Begin moving to new XDG compliant directory structure
This commit is contained in:
parent
50c1b6cacb
commit
5e50aafcd0
23 changed files with 27 additions and 8 deletions
9
.config/zsh/34-alias-show-newest-files
Normal file
9
.config/zsh/34-alias-show-newest-files
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue