My build of nnn with minor changes
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

17 行
322 B

  1. #!/usr/bin/env sh
  2. # Description: List files bigger than input size by ascending access date.
  3. #
  4. # Dependencies: find sort
  5. #
  6. # Shell: POSIX compliant
  7. # Author: Arun Prakash Jana
  8. printf "Min file size (MB): "
  9. read -r size
  10. find . -size +"$size"M -type f -printf '%A+ %s %p\n' | sort
  11. echo "Press any key to exit"
  12. read -r _