
Signed-off-by: Pere Orga <gotrunks@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
7 lines
145 B
Bash
Executable file
7 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
|