Remove Empty Lines and Comments
Tagged with: comments, commnad, delete, Linux, sed
Tuesday, February 12th, 2008 11:27 PM
Remove comments and blank lines from example.pl
sed '/ *#/d; /^$/d' example.pl
Remove comments and blank lines from example.pl
sed '/ *#/d; /^$/d' example.pl