Sign in
coral
/
busybox
/
9de318d63eea6bba71490eae9c5d07b81cc91752
/
.
/
applets_sh
/
tac
blob: c5a8e39c11152dceaa2cde867d3ee4eab1c31c4c [
file
] [
log
] [
blame
]
#!/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