Total Pageviews

Monday, August 30, 2010

find command tips

1) Replace all the files under the directory containing the word pradeep to paps

find ./ -type f | xargs perl -pi -w -e 's/pradeep/paps/g;'

2) To check the size of each directory

find . -maxdepth 1 -type d -print | xargs du -sh | sort -rn

No comments: