sed remove css comments


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sed remove css comments
# 8  
Old 08-25-2010
Quote:
Originally Posted by gravesit
The only thing I don't like about that solution is it removes all the blank lines in the file also.
Good point. An oversight, sorry Smilie
# 9  
Old 08-25-2010
A tweak to scottn's solution which does not consume blank lines, handles lines with multiple comments, and strongly quotes the exclamation point to protect it from history expansion on shells that support that feature:
Code:
$ cat data
some stuff
<!-- some comment-->

some more stuff <!-- some comment 2-->
<!-- some comment 3-->yet some more stuff
<!-- some comment 4-->yet even some more stuff<!-- some comment 5-->
$ sed -e '/^$/b' -e 's/<!--[^>]*>//g; /^$/d' data
some stuff

some more stuff 
yet some more stuff
yet even some more stuff

Caveat: This only works for simple single-line comments which do not contain a ">" (which, if I recall correctly, is allowed).

Regards,
Alister

Last edited by alister; 08-25-2010 at 02:33 PM..
This User Gave Thanks to alister For This Post:
# 10  
Old 08-25-2010
Quote:
Originally Posted by alister
A tweak to scottn's solution which does not consume blank lines, handles lines with multiple comments, and strongly quotes the exclamation point to protect it from history expansion on shells that support that feature:
Code:
$ cat data
some stuff
<!-- some comment-->

some more stuff <!-- some comment 2-->
<!-- some comment 3-->yet some more stuff
<!-- some comment 4-->yet even some more stuff<!-- some comment 5-->
$ sed -e '/^$/b' -e 's/<!--[^>]*>//g; /^$/d' data
some stuff

some more stuff 
yet some more stuff
yet even some more stuff

Regards,
Alister
Very nicely done Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Remove comments like pattern from text

Hi , We need to remove comment like pattern from a code text. The possible comment expressions are as follows. Input BizComment : Special/*@ Name:bzt_53_3aea640a_51783afa_5d64_0 BizHidden:true @*/ /* lookup Disease Category Therapuetic Class */ a=b;... (6 Replies)
Discussion started by: VikashKumar
6 Replies

2. UNIX for Dummies Questions & Answers

Remove SAS comments using UNIX

I have tried a lot, Need your help guys. SAS Program: data one ; /* Data step */ Input name $; /*Dec variables*/ I want to remove the commented part(/* Data step */) alone. I have tried using sed command but it is deleting the entire line itself. i need unix command to separate this and... (1 Reply)
Discussion started by: saaisiva
1 Replies

3. Shell Programming and Scripting

How to remove comments from a bash script?

I would like to remove comments from a bash script. In addition, I would like to remove lines that consist of only white spaces, and to remove blank lines. #!/bin/bash perl -pe 's/ *#.*$//g' $1 | grep -v ^]*$ | perl -pe 's/ +/ /g' > $2 # # $1 INFILE # $2 OUTFILE The above code... (10 Replies)
Discussion started by: LessNux
10 Replies

4. Shell Programming and Scripting

sed remove comments

I need to use sed to remove comments from files. I am using this, but it only works on comments that start at the beginning of the line. sed /^"\/\/"/d In most of the files I have comments like this: code // Comments or tab // Comments (5 Replies)
Discussion started by: gravesit
5 Replies

5. Shell Programming and Scripting

changing c comments to c++ style with sed

Hi everyone, I've got a problem with converting C comments ( /* */ ) into C++ style ( // ) in some source file with sed. So far I've dealt with comments on one line, but I don't know how to convert when it is over multiple lines ... So I already have something like this: comments.sed ... (8 Replies)
Discussion started by: kolage
8 Replies

6. UNIX for Dummies Questions & Answers

Remove blank lines and comments from text file

Hi, I am using BASH. How can I remove any lines in a text file that are either blank or begin with a # (ie. comments)? Thanks in advance. Mike (3 Replies)
Discussion started by: msb65
3 Replies

7. Shell Programming and Scripting

Sed script, changing all C-comments to C++-comments

I must write a script to change all C++ like comments: // this is a comment to this one /* this is a comment */ How to do it by sed? With file: #include <cstdio> using namespace std; //one // two int main() { printf("Example"); // three }//four the result should be: (2 Replies)
Discussion started by: black_hawk
2 Replies

8. Shell Programming and Scripting

how can i remove comments in random positions in a file?(bash)

Suppose i have a file like this: #bla bla #bla bla bla bla bla Bla BLA BLA BLA #bla bla .... .... how can i remove all comments from every line,even if they are behind commands or strngs that are not comments? any idea how i could do that using awk? (2 Replies)
Discussion started by: bashuser2
2 Replies

9. Shell Programming and Scripting

please explain this sed shell script to remove C++ comments.

#! /bin/sed -nf # Remove C and C++ comments, by Brian Hiles (brian_hiles@rocketmail.com) # Sped up (and bugfixed to some extent) by Paolo Bonzini (bonzini@gnu.org) # Works its way through the line, copying to hold space the text up to the # first special character (/, ", '). The original... (1 Reply)
Discussion started by: Priyaranjan
1 Replies

10. UNIX for Dummies Questions & Answers

Remove comments...

It may be a no-brainer, but the answer is escaping me right now: I'm trying to write a little script to remove all comments from .c source... I was thinking sed, but I'm not a very strong regexp user (e.g. I suck with sed). I tried dumping the file into: sed -e 's/\/\* * \*\///g' and several... (1 Reply)
Discussion started by: LivinFree
1 Replies
Login or Register to Ask a Question