Fix static analysis and lint errors
This commit is contained in:
parent
8494eda973
commit
d7e8831423
9 changed files with 116 additions and 117 deletions
|
|
@ -1,10 +1,10 @@
|
|||
#!/bin/zsh
|
||||
# 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
|
||||
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