/
Finding newest or oldest file in directory tree
Finding newest or oldest file in directory tree
Finding the newest or oldest file (rg. modification date) in a directory tree is not as easy as one might think ...
# older to newer find . -type f -printf "%TY-%Tm-%Td %TX %p\n" |cut -c1-19,31- |sort # newer to older: add -r to sort: find . -type f -printf "%TY-%Tm-%Td %TX %p\n" |cut -c1-19,31- |sort -r # timestamps keys for printf: %a = access time %C = status change %T = modification time
, multiple selections available,
Related content
PBA Package Builder + Archiver Home
PBA Package Builder + Archiver Home
More like this
Adapting FancyLibs from Debian 11 Bullseye to 12 Bookworm, later eventually MinGW-9 to MinGW-10
Adapting FancyLibs from Debian 11 Bullseye to 12 Bookworm, later eventually MinGW-9 to MinGW-10
More like this
FancyMail Home
FancyMail Home
More like this
JDBC2XML Home
JDBC2XML Home
More like this
JDBC2XML Docker-Image
JDBC2XML Docker-Image
More like this