what is the cmd to remove the comment lines from a file and
to display the original text without comments?
thanks in advance......

Answers were Sorted based on User's Feedback



what is the cmd to remove the comment lines from a file and to display the original text without c..

Answer / sandip

sed '/^#/d' filename

Is This Answer Correct ?    9 Yes 6 No

what is the cmd to remove the comment lines from a file and to display the original text without c..

Answer / srividya

sed '/^#/ d'

Is This Answer Correct ?    6 Yes 4 No

what is the cmd to remove the comment lines from a file and to display the original text without c..

Answer / susanta polley

sed -e 's/^#//g' input_filename > output_filename

Is This Answer Correct ?    4 Yes 2 No

what is the cmd to remove the comment lines from a file and to display the original text without c..

Answer / deepak

sed -e 's/^#//g' -e 's/#//g' input_filename > output_filename


Is This Answer Correct ?    6 Yes 5 No

what is the cmd to remove the comment lines from a file and to display the original text without c..

Answer / giri

grep -v '#' input_filename > output_filename

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Unix Commands Interview Questions

In Unix file permissions what does the second field denotes?

3 Answers  


Explain the steps that a shell follows while processing a command.

0 Answers  


What is the functionality of a top command?

0 Answers   Amazon,


Which Command is Used for temprary switch User?

5 Answers   BitWise, IBM,


What do chgrp command do?

0 Answers  






Which command is used to find whether the system is 32 bit or 64 bit?

0 Answers  


in UNIX,How do you check for processes started by particular user suppose the user name is 'suresh'?

6 Answers  


How do I delete files from command prompt?

0 Answers  


what is the difference between Touch & cat command

21 Answers   QA,


What is the syntax of grep command and what is its use?

6 Answers  


what are the uses of filters?

3 Answers  


What is file system in unix??

10 Answers   Symphony,


Categories