Mercurial > repos > rico > test_500
view echo.bash @ 0:3be071295340 default tip
Uploaded
| author | rico |
|---|---|
| date | Fri, 06 Apr 2012 15:50:15 -0400 |
| parents | |
| children |
line wrap: on
line source
#!/usr/bin/env bash if [ $# -lt 3 ]; then echo "usage" exit 1 fi input="$1" output="$2" shift 2 for individual in "$@"; do echo "$individual" >> "$output" done exit 0
