9 lines
288 B
Bash
Executable File
9 lines
288 B
Bash
Executable File
#!/bin/sh -e
|
|
# Lists the latest modified files in the given directory or pwd
|
|
test "$1" = "-a" && all=true && shift
|
|
for f in "${@:-$PWD}"
|
|
do test $# -gt 1 && highlight "$f"
|
|
find "$f" -maxdepth 4 -type f -printf '%.16T+ %P\n' |
|
|
sort -r | $(test "$all" && echo "less" || echo "head")
|
|
done
|