Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
55af51c66d0dae27d188974820c4a7d53dd0be55
/
.
/
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