add nnn configs
This commit is contained in:
parent
b0345efb7e
commit
cba9e9e72b
59 changed files with 5175 additions and 1 deletions
16
.config/nnn/plugins/oldbigfile
Executable file
16
.config/nnn/plugins/oldbigfile
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# Description: List files bigger than input size by ascending access date.
|
||||
#
|
||||
# Dependencies: find sort
|
||||
#
|
||||
# Shell: POSIX compliant
|
||||
# Author: Arun Prakash Jana
|
||||
|
||||
printf "Min file size (MB): "
|
||||
read -r size
|
||||
|
||||
find . -size +"$size"M -type f -printf '%A+ %s %p\n' | sort
|
||||
|
||||
echo "Press any key to exit"
|
||||
read -r _
|
Loading…
Add table
Add a link
Reference in a new issue