How to modify the contents of file using script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to modify the contents of file using script
# 1  
Old 04-30-2009
How to modify the contents of file using script

Hi,

Can anyone pls let me know how can i modify the file contents thru script.

Eg.
I have file abc.dat that contains below lines
Merge.resync.cycleFlag
Merge.resync.logFlag
Merge.resync.maxByteRate
Merge.resync.maxSearch
Merge.resync.rate
Merge.resync.tickLog
Merge.resync.tickLogFmt


I want to comment out some lines say

Merge.resync.cycleFlag
Merge.resync.logFlag
#Merge.resync.maxByteRate
#Merge.resync.maxSearch
#Merge.resync.rate
#Merge.resync.tickLog
Merge.resync.tickLogFmt


Pls let me know how i can proceed?
# 2  
Old 04-30-2009
Quote:
Originally Posted by sdosanjh
Hi,

Can anyone pls let me know how can i modify the file contents thru script.

Eg.
I have file abc.dat that contains below lines
Merge.resync.cycleFlag
Merge.resync.logFlag
Merge.resync.maxByteRate
Merge.resync.maxSearch
Merge.resync.rate
Merge.resync.tickLog
Merge.resync.tickLogFmt


I want to comment out some lines say

Merge.resync.cycleFlag
Merge.resync.logFlag
#Merge.resync.maxByteRate
#Merge.resync.maxSearch
#Merge.resync.rate
#Merge.resync.tickLog
Merge.resync.tickLogFmt


Pls let me know how i can proceed?

First, you will need to define the logic on when the lines should be commented out. Then we can do it.

Cheers,
Devaraj Takhellambam
# 3  
Old 04-30-2009
Quote:
Originally Posted by devtakh
First, you will need to define the logic on when the lines should be commented out. Then we can do it.

Cheers,
Devaraj Takhellambam

Actually there are multiple files with the same contents, but line numbers may differ in each file. it is possible using awk and redirecting the o/p to new file and again move back the original file, but if any other option is possible?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

modify the test file by any script

Hi All the Helpers! I have a text file which looks like input.txt.I would request to please suggest me how can I make this file look like output.txt input.txt VOP 111 0 1 2 DEM 111 0 222 333 444 555 DEM 879 888 987 888 989 DEM 879 888 987 888 989 VOP 118 0 12 3 6... (7 Replies)
Discussion started by: Indra2011
7 Replies

2. Shell Programming and Scripting

Modify the text file by script

Hi All the Helpers! I have a text file which looks like input.txt.I would request to please suggest me how can I make this file look like output.txt input.txt VOP 111 0 1 2 DEM 111 0 222 333 444 555 879 888 987 888 989 VOP 118 0... (2 Replies)
Discussion started by: Indra2011
2 Replies

3. Shell Programming and Scripting

Modify the file by script

Hi All, I have an input file like below, 6984 1225 6989 1220 6994 1214 ... (3 Replies)
Discussion started by: Indra2011
3 Replies

4. Shell Programming and Scripting

Modify text file using shell script

Hi, I have a text file which is following format - COL VAL ABC 1 ABC 2 ABC 3 ABC 4 ABC 5 My requirement is to search for a particular value (provided by user) in the file and comment the previous entries including that as well. E.g. If I search for number 3, then the output... (6 Replies)
Discussion started by: bhupinder08
6 Replies

5. UNIX for Advanced & Expert Users

How do I modify file contents?

I have a table output in a text file (abc.txt)as follows col1 , col2 , col3 , col4 , Here I want to modify this file as follows col1 '~!#', col2 '~!#', col3 '~!#', col3 '^@\n' Could you help on this??? Thanks Kris (1 Reply)
Discussion started by: mkris
1 Replies

6. Programming

Need to modify contents of file with complex patterns.

hi, my fstab file content is like this along with some other lines: /dev/vg0/var1 /var1 ext3 defaults 0 2 /dev/vg0/flx1 /flx1 ext3 defaults 0 2 /dev/vg0/var /var ext3 defaults 0 1 /dev/vg0/flx /flx ext3 defaults 0 2 I want to remove lines with /dev/vg0/var and... (5 Replies)
Discussion started by: success
5 Replies

7. Shell Programming and Scripting

Need to modify csv-file with bash script

Hi Guys, I need to write a script, that exports the "moz_places" table of the "places.sqlite"-file (firefox browser history) into a csv-file. That part works. After the export, my csv looks like this: ... 4429;http://www.sqlite.org/sqlite.html;"Command Line Shell For... (11 Replies)
Discussion started by: Sebi0815
11 Replies

8. Shell Programming and Scripting

Simple script to modify kickstart file

Hi, I would like to create a script so that it will ask me the following: 1) What is the ip address? 2) What is the gateway address? 3) What is the hostname? and then put the answer to the below kickstart file (kickstart.cfg) Here I included the kickstart.cfg: # Kickstart file... (9 Replies)
Discussion started by: beeloo
9 Replies

9. Shell Programming and Scripting

Need to modify a file of different username through script.

Hi ! All I want to write a script where, it will open a new shell with a username / pwd and modify a file of same username and exit. example: 1. UserA 2. UserB- FileB ScriptA -> su UserB -> Modify FileB -> Exit ScriptA Can somebody give me a direction , on how to... (2 Replies)
Discussion started by: dashok.83
2 Replies

10. Shell Programming and Scripting

how to modify a file using shell script

Hi, i am using SuonOS and ksh. i need to add data into a file(s.txt) using a shell script. i have to pass 3 parameters and these 3 paramaters should add into the file at end of the file. File s.txt is look like, --------------------------------- column1|column2|column3 ... (1 Reply)
Discussion started by: syamkp
1 Replies
Login or Register to Ask a Question