================================================================================ # A trick to put "debug" lines in a script that you can easily turn on and off #!/bin/sh # select the first line to turn debug lines off, # the second to turn them on DEBUG=: DEBUG= $DEBUG echo hello; echo hello2 exit