mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
10 lines
178 B
Bash
Executable File
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-
|