*blog... kind of... *rss 



Get the amount of files in a folder with Ubuntu
It's a shame that doing a right click > properties in a folder doesn't tell you this (as Windows does) but well... Open the terminal, go to the folder you want to check a type this:

for t in files links directories; do echo `find . -type ${t:0:1} | wc -l` $t; done 2> /dev/null

Will output this:

655 files
6 links
213 directories

Found it here.
0 comments written so far...


Have your say!



Name:

Website:

Comment: