1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-06-25 05:48:21 +00:00
pdf2htmlEX/buildScripts/listFilesByChangeTime
2019-12-13 11:44:20 +00:00

10 lines
180 B
Bash
Executable File

#!/bin/bash
# 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-