Switched to Zgen Plugin manager

This commit is contained in:
Marty Oehme 2019-02-04 03:32:45 +01:00
parent aee04848cf
commit 9a1cc66bd5
8 changed files with 495 additions and 122 deletions

9
.zshrc.d/002-newf Normal file
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
}