old-website/unix102/appender.sh

12 lines
101 B
Bash
Raw Permalink Normal View History

#!/bin/bash
while [ ${#} != 0 ]; do
echo "${1}:"
cat "${1}"
echo ""
shift
done
exit 0