mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
8 lines
145 B
Plaintext
8 lines
145 B
Plaintext
|
#!/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
|