GURU NEEDED : break a command into several lines and comment each line
Stefan Monnier
monnier at iro.umontreal.ca
Thu Jan 13 22:12:30 EST 2011
More information about the Python-list mailing list
Thu Jan 13 22:12:30 EST 2011
- Previous message (by thread): GURU NEEDED : break a command into several lines and comment each line
- Next message (by thread): Multiple independently started python processes and sharing of a module
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> #!/bin/bash -xv > command \ # comment1 > -sw1 \ # comment2 > -sw2 \ # comment3 > arguments > One ought to be able to comment every single switch if desired for > whatever reason. Thanks for the riddle. Here's a solution: command $(: # comment1 ) -sw1 $(: # comment2 ) -sw2 $(: # comment3 ) arguments -- Stefan
- Previous message (by thread): GURU NEEDED : break a command into several lines and comment each line
- Next message (by thread): Multiple independently started python processes and sharing of a module
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list