Remove Empty Lines
Tagged with: blank, command, empty, line, Linux, remove, sed, text
Thursday, February 7th, 2008 11:29 PM
No Comments »Remove all empty directories within the current directory
find . -type d -empty -exec rmdir {} \;
perl -MFile::Find -e"finddepth(sub{rmdir},'.')"
Delete Empty Directories
http://www.jonasjohn.de/lab/red.htm
[tags]empty,folder,delete,remove,perl,command,linux[/tags]