parse a file for a special character


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting parse a file for a special character
# 1  
Old 10-08-2008
parse a file for a special character

hello,


How to parse a file to see if a specific line is commented by '#' character?

filename: file1

cat file1

...
# /usr/bin/whatever
...


thank you
# 2  
Old 10-08-2008
What do you want if it's commented out? The line itself? The line number?...

I'd suggest
Code:
man grep

or maybe have a look into awk, if you need more features.
# 3  
Old 10-08-2008
I am looking for this:

when /usr/bin/whatever is commented, echo something
if it is not commented, echo something else.

thanks
# 4  
Old 10-08-2008
Could you please be more specific about your question ?

Something like this ?

Code:
awk '{ if ( match($0, "^#") ) { print "line is commented" } else { print "line is not commented" } }' filename

# 5  
Old 10-08-2008
Quote:
Originally Posted by matrixmadhan
Could you please be more specific about your question ?

Something like this ?

Code:
awk '{ if ( match($0, "^#") ) { print "line is commented" } else { print "line is not commented" } }' filename

Or, if you want to test only the lines containing /usr/bin/whatever, you can modify the very good suggestion above:

Code:
awk '$0 ~ /\/usr/bin\/whatever/ { if ( match($0, "^#") ) { print "line is commented" } else { print "line is not commented" } }' filename

Awk is pretty fantastic for this sort of thing.
# 6  
Old 10-08-2008
Quote:
when /usr/bin/whatever is commented
I think OP gave the above as an example.

But still, what you gave is a good suggestion Smilie
# 7  
Old 10-09-2008
Check some entry commented not or not
grep -n "$entry_name" "$file_name" | awk '$2~/^#/{print $2, "Line", $1"is commented"}'
Check some line commented or not
awk '$0 ~/^#/{if( NR == "$line_num" ) printf("commented: 5d\n", NR);}

Last edited by a2156z; 10-09-2008 at 05:34 AM..
a2156z
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Red Hat

Special character ^@ in CSV file

All, I am having a tough time with Linux and CSV file. My CSV file gets generated from Cognos on Linux machine that contains special characters. At first instance when I do vi <filename> to that file, I can't see anything. I did tail -2 and redirected to another temp file and did vi <filename>,... (2 Replies)
Discussion started by: donadarsh
2 Replies

2. Programming

Problem with control file and special character

I am getting error when loading data file using ctl file. I get this error only when there is special character. Below is some data. DataFile=> company_id|ciu_id|english_name|iso_country_code|active|partner_name 1-2JT-122||Expert Järvenpää|FI|A|Expert Järvenpää Control File=> LOAD DATA... (1 Reply)
Discussion started by: rshivarkar
1 Replies

3. Shell Programming and Scripting

Remove special character ($) from file names

Hello I've searched here and on the 'net for examples of a script or command line function that will remove the $ character from all file names only that can be done within the directory that contains the file names - which are all html files. ie, I have a directory that contains html files... (6 Replies)
Discussion started by: competitions
6 Replies

4. Shell Programming and Scripting

Removing Special Character from File.

Hi, My file has this special character "^M" I would like to remove this characters. eg: abc,abc,^M i tried using sed but doesnt work. i used octal dump command to see special character it returns following: 015 \r Appreciate your reply. (6 Replies)
Discussion started by: pinnacle
6 Replies

5. Shell Programming and Scripting

parse special character in the line

Hi all, I have a file with some module names as below. Font::AFM Data::Grove ---> libxml-perl Net::LDAP ---> perl-ldap DBI XML .... ... .... and so on ... The file has some lines with the character " -->" . Now how can I cut only the last column of the line wherever "-->" is... (4 Replies)
Discussion started by: vijaya2006
4 Replies

6. UNIX for Dummies Questions & Answers

Special character in my file

I have a special character in my file. It displays as a '#' sign but when I do this command I do not find the line. fgrep 'G#ant' file1 I want to replace the special character with another value but I need to know what character it really is. Any ideas on how to replace this '#' value with... (3 Replies)
Discussion started by: Ryan2786
3 Replies

7. Shell Programming and Scripting

delete a special character in file

hi i want to delete a particular character in file. example file name:abcsample abc=bbbqw3/ hidh=ajjqiwio4/ xyx=hakjp/ ........../ ......./ i want to delete that special character (/) in abcsample file Permnently.please give the required commands for my requirement. required... (1 Reply)
Discussion started by: srivsn
1 Replies

8. Shell Programming and Scripting

delete a special character in file

hi i want to delete a particular character in file. example file name:abcsample abc=bbbqw3/ hidh=ajjqiwio4/ xyx=hakjp/ ........../ ......./ i want to delete that special character (/) in abcsample file.please give the required commands for my requirement. thank you (3 Replies)
Discussion started by: srivsn
3 Replies

9. Solaris

Mount a character special file

Hi together I have 2 systems, mars and venus. The configuration is the same. Every system has a SDLT. I will now backup the datas from mars on the tapedevice from venus. I have shareed the tapedevice (venus) and mounted on mars. Now my problem: when I write on the mountet tapedevice, the... (1 Reply)
Discussion started by: MuellerUrs
1 Replies
Login or Register to Ask a Question