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
1 changed files with 9 additions and 0 deletions

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-