source:
MondoRescue/branches/3.3/mindi-busybox/applets_sh/tac@
3621
Last change on this file since 3621 was 3621, checked in by , 8 years ago | |
---|---|
|
|
File size: 145 bytes |
Line | |
---|---|
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 |
Note:
See TracBrowser
for help on using the repository browser.