![]() |
looking for script - strip out all # comments
Hey, you scripters....
Anybody got a simple script I can use, sorta like: $ strip_comments /etc/rc.d/rc.modules and have the output just show all lines that don't have # in the first column? This is no emergency or anything. Thanks if you do and can post it... I just haven't gotten around to writing any scripts yet. |
grep -v "^#"
Pipe anything you want to that :) |
Strike...
Exactly what I as looking for. Thanks!! |
If the comment is NOT the first character,
Like # here for instance cat file | sed 's/#.*//' | grep . billy |
| All times are GMT -5. The time now is 08:18 PM. |