bookmarks/cheat/shell.md

103 B

Debugging a shell function

function mybuggyfunction {
   set -x
   my code
   set +x
}