This commit is contained in:
Hydroxycarbamide 2024-07-29 21:16:45 +02:00
parent 0ef5de12ac
commit c0889285ff
58 changed files with 5175 additions and 0 deletions

View 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 _