mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
10 lines
180 B
Plaintext
10 lines
180 B
Plaintext
|
#!/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-
|