...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
if [ $# -lt 2 ]; then echo "Usage: rosrun PACKAGE EXECUTABLE [ARGS]" echo " rosrun will locate PACKAGE, cd to it, and try to find" echo " an executable named EXECUTABLE in the PACKAGE tree." echo " If it finds it, it will run it with ARGS." exit 1 fi |
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
echo $* |
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
echo $* shift shift echo $* |
...