mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
added build script to list files by change times
This commit is contained in:
parent
a8323f1c16
commit
1d29159ecb
9
buildScripts/listFilesByChangeTime
Executable file
9
buildScripts/listFilesByChangeTime
Executable 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-
|
Loading…
Reference in New Issue
Block a user