Answers for "how to show number of items in folder centos 7"

0

count the number of folder linux command line

ls -lah | wc -l
Posted by: Guest on July-10-2021
0

shell show number of files in each folder

du -a | cut -d/ -f2 | sort | uniq -c | sort -nr
Posted by: Guest on December-16-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language