view echo.bash @ 36:51cd0307fb70

Phylip's extra ouputs are now stored in the job working directory
author Richard Burhans <burhans@bx.psu.edu>
date Wed, 20 Nov 2013 16:32:01 -0500
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