organize all shell scripts into logical dirs

This commit is contained in:
Marty Oehme 2019-03-15 14:40:03 +01:00
parent c4d2b9534a
commit a446cd7a7a
30 changed files with 177 additions and 252 deletions

View file

@ -0,0 +1,9 @@
# show newest files
# http://www.commandlinefu.com/commands/view/9015/find-the-most-recently-changed-files-recursively
newest (){
find . -type f -printf '%TY-%Tm-%Td %TT %p\n' | \
grep -v cache | \
grep -v '.hg' | grep -v '.git' | \
sort -r | \
less
}