Find first 3 largest files located in a in a current directory recursively: $ find . -type f -exec ls -s {} + | sort -n -r | head -3 ...
確定! 回上一頁