Last change
on this file was
5612,
checked in by westram, 16 years ago
|
- added documentation
- arb_ludwig calls arb_remote now
- arb_oneach and arb_rwho removed (MBI-specific)
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
214 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | # reads parameters from command line. |
---|
3 | # prints each parameter on its own line. |
---|
4 | # |
---|
5 | # used to control interactive command line programs, lacking a CLI |
---|
6 | |
---|
7 | while [ \! -z "$1" ]; do |
---|
8 | echo $1 |
---|
9 | shift |
---|
10 | done |
---|
11 | |
---|
Note: See
TracBrowser
for help on using the repository browser.