3 lines
137 B
Bash
Executable file
3 lines
137 B
Bash
Executable file
#!/bin/sh -e
|
|
# Displays the latest files in the given directory or pwd
|
|
find "$1" -maxdepth 4 -type f -printf '%TF %f\n' | sort -r | head
|