add content

This commit is contained in:
JOLIMAITRE Matthieu 2024-06-18 03:14:30 +02:00
parent 94df7c8562
commit cc9afc5ffe
140 changed files with 10414 additions and 1 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 _