Answers for "ls and find the sum of size"

0

ls and find the sum of size

$ find . -name "*" -type f -mtime -1 -exec du -sk {} \; | nawk '{sum+=$1} END {print sum/1024" MB"}'
Posted by: Guest on August-11-2021

Code answers related to "ls and find the sum of size"

Browse Popular Code Answers by Language