** Private ** wrote: > > I would like to get a breakdown of the file extensions in the folder, > i.e. > 5000 .MP3 files > 1000 .XLS files > 500 .GIF files > etc...
ls -l | grep '\.' | sed 's/.*\./\./g' | sort | uniq -c Jochem ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/cf_lists/message.cfm/forumid:5/messageid:211329 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:5 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.5
