bookmarks/cheat/shell.md
2020-07-13 18:31:35 +02:00

9 lines
103 B
Markdown

### Debugging a shell function
```bash
function mybuggyfunction {
set -x
my code
set +x
}
```