add shell cheatsheet

This commit is contained in:
MorganGeek 2020-07-13 18:31:35 +02:00
parent ca76c2cbd8
commit ef520f28a0
1 changed files with 8 additions and 0 deletions

8
cheat/shell.md Normal file
View File

@ -0,0 +1,8 @@
### Debugging a shell function
```bash
function mybuggyfunction {
set -x
my code
set +x
}
```