- Timestamp:
- 01/17/06 14:08:41 (3 years ago)
- Files:
-
- 1 modified
-
lib/pugs/run.pod (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lib/pugs/run.pod
r7871 r8726 24 24 WRITEME 25 25 26 =head2 Flags separation27 28 Pugs uses C<--> to separate flags of Pugs itself and arguments to the program.29 For example, this will print C<--help>:30 31 $ pugs -e 'say @ARGS' -- --help32 33 But this will show the help message of Pugs:34 35 $ pugs -e 'say @ARGS' --help36 37 For the same reason, to use Pugs in the Unix C<#!> line, add an extra C<-->38 after it:39 40 #!/usr/bin/pugs --41 say 'Hello, ', @ARGS, '!';42 43 26 =head2 Command line options 44 27
