Deleting comments from c-file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Deleting comments from c-file
# 8  
Old 11-08-2011
Try this...
Code:
sed  '/\/\*$/,/\*\//d;/\/\*[^*]/,/\*\//d;/\/\*.\*\//d;/^[ \t]*\/\//d' $FILE

This User Gave Thanks to siva shankar For This Post:
# 9  
Old 11-08-2011
@siva shankar thank you very much !!

---------- Post updated at 03:24 PM ---------- Previous update was at 01:01 PM ----------

thanks for your reply

but i am still getting a problem e.g.
Quote:
int main()
{
/*
some code
*/ /*
some code
*/
}
i am getting output as
Quote:
int main()
{
some code
*/
}
but my output should be
Quote:
int main()
{
}
please help me
# 10  
Old 11-08-2011
For your above posted input file ..
Code:
$ sed '/\/\*$/,/\*\/$/d' infile.cpp

This User Gave Thanks to jayan_jay For This Post:
# 11  
Old 11-08-2011
@jayan
Quote:
sed '/\/\*$/,/\*\//d;/\/\*[^*]/,/\*\//d;/\/\*.\*\//d;/^[ \t]*\/\//d' $FILE
this command is working fine but its not working for the following case

i need to edit this to make work for above case also !!..

thanks for replying
# 12  
Old 11-08-2011
Code:
sed '/\/\*$/,/\*\/$/d;/\/\*[^*]/,/\*\/$/d;/\/\*.\*\/$/d;/^[ \t]*\/\//d' $FILE

This will work fine unless there is no code like
Code:
int main()
{
/*
some code
*/some code or space character
}

Check it...
This User Gave Thanks to siva shankar For This Post:
# 13  
Old 11-08-2011
@shiv shankar
thanks for help!!
# 14  
Old 11-08-2011
I hope know its working fine...
This User Gave Thanks to siva shankar For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script to find comments in file

As I stated in a previous thread - I'm a newbie to Unix/Linux and programming. I'm trying to learn the basics on my own using a couple books and the exercises provided inside. I've reached an exercise that has me stumped. I need to write a bash script that will will read in a file and print the... (11 Replies)
Discussion started by: ksmarine1980
11 Replies

2. Shell Programming and Scripting

Deleting comments from fields

Hi I have this sample data set as follows (called file.txt): hostname1:user1:password hostname2:user1:password #comments comments hostname3:user1:passwordI wish to produce a report as follows: hostname1 user1 password hostname2 user1 password hostname3 user1 passwordie remove all... (11 Replies)
Discussion started by: tsu3000
11 Replies

3. Shell Programming and Scripting

Remove comments from file with specific file name extensions

Hello Unix board community, I have to program a shell script, but I am a complete noob so I hope I get some help here. The assignment is as follows: The program removes all comments regardless of formatting or language from files with specific file name extensions (php, css, js, ...).... (3 Replies)
Discussion started by: TheZeusMan
3 Replies

4. Linux

Not able to sort a file based on it name. Need your expert comments.

Hi, I have a files as shown below and I wanted to sort then in following patter based on there names which has "_" in it. I want to sort them according to feild 6th (bold once)value as shown below. Thanks in advance. File names: 20111014_manish_STEP2_Files_number__5979-6968_ ... (5 Replies)
Discussion started by: manishkomar007
5 Replies

5. 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

6. 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

7. UNIX for Dummies Questions & Answers

Delete Comments in file

How can I delete comments (lines beginning with /* and ending with */) in file? with single command line..My suggestion is to use grep and sed! (4 Replies)
Discussion started by: aadi_uni
4 Replies

8. Shell Programming and Scripting

AWK to skip comments in XML file

Hello, I'm trying to make a shell script to skip comments from an XML file, but with the code below only deletes comments that are in one line. Can you tell me what can be added here? nawk ' { if($0 !~/<!--/) { a=0 } if($0 ~/<!--/ && $0 ~/-->/) {a=1} if($0 ~/<!--/) {a=1} if... (1 Reply)
Discussion started by: majormark
1 Replies

9. UNIX for Advanced & Expert Users

Add Comments to the specifi lines i na file

I have a requirement like below.I need to Comment some lines in a file. File contains following information. { attribute1 attribute2 atrribute3 attribute4 attribute5 attribute6 attribute7 } I have a requirement like some times i need to comment lines 3 to before '}' and some... (1 Reply)
Discussion started by: ukatru
1 Replies

10. Shell Programming and Scripting

removing comments from file

I'm doing manual way to add and remove "#" on etc/services. Is there anyway I can modify the file using awk or sed or any other program. I use vi to modify /etc/services for enabling telnet , the problem is I don't know how to do it automatically in script. production state: #telnet ... (9 Replies)
Discussion started by: skully
9 Replies
Login or Register to Ask a Question