Mercurial > repos > miller-lab > genome_diversity
view echo.bash @ 4:7a94f11fe71f
change output.extra_files_path to output.files_path
author | Richard Burhans <burhans@bx.psu.edu> |
---|---|
date | Tue, 10 Apr 2012 11:58:44 -0400 |
parents | 2c498d40ecde |
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