Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
8705e6a9d76f08a85ce15c97a072e91c010a72cf
/
.
/
ap
/
app
/
busybox
/
src
/
applets_sh
/
tac
blob: c5a8e39c11152dceaa2cde867d3ee4eab1c31c4c [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame
]
1
#!/bin/sh
2
# TODO: use getopt to avoid parsing options as filenames,
3
# and to support -- and --help
4
for
i
in
"$@"
5
do
6
sed
-
e
'1!G;h;$!d'
"$i"
7
done