pdf2htmlEX/buildScripts/listFilesByChangeTime

10 lines
178 B
Bash
Executable File

#!/bin/sh
# see:https://stackoverflow.com/a/7448828
find . -type f -print0 | \
xargs -0 stat --format '%Y :%y %n' | \
sort -nr | \
grep -v build | \
cut -d: -f2-