Files
busybox/applets_sh/tac
T
2012-02-09 18:23:33 +01:00

8 lines
145 B
Bash
Executable File

#!/bin/sh
# TODO: use getopt to avoid parsing options as filenames,
# and to support -- and --help
for i in "$@"
do
sed -e '1!G;h;$!d' "$i"
done