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

103 B

Debugging a shell function

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