1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-21 20:50:07 +00:00

added build script to list files by change times

This commit is contained in:
Stephen Gaito 2019-12-13 11:44:20 +00:00
parent a8323f1c16
commit 1d29159ecb

View File

@ -0,0 +1,9 @@
#!/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-