зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 21:26:09 +02:00
21 строка
324 B
Plaintext
21 строка
324 B
Plaintext
functions -t func
|
|
enable [tracing] for function func.
|
|
functions -n func
|
|
This prevents function from execution - [nonexec].
|
|
functions -v func
|
|
Force each command to print [verbose] itself before expansion.
|
|
|
|
|
|
|
|
|
|
|
|
zsh options:
|
|
|
|
xtrace
|
|
set -x
|
|
#!/bin/sh -x
|
|
Every time the command executes - pring $PS4 and the command line.
|
|
|
|
|
|
|