Count Files/Directories/Links in *nix Get link Facebook X Pinterest Email Other Apps September 12, 2012 for t in files links directories; do echo `find . -maxdepth 1 -type ${t:0:1} | wc -l` $t; done 2> /dev/null -maxdepth 1 specifies how far to count files Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment