sed question


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sed question
# 8  
Old 12-28-2010
OK, so here you have only one requirement. In my previous post, I was talking about many more processing on crontab files mentioned in post #1.
if -i switch is supported:
Code:
sed -i 's!.*\/dev1\/scripts\/.*!#&!' cronfile.txt

If not:
Code:
sed 's!.*\/dev1\/scripts\/.*!#&!' cronfile.txt > temp; mv temp cronfile.txt


Last edited by anurag.singh; 12-28-2010 at 04:16 PM..
These 2 Users Gave Thanks to anurag.singh For This Post:
# 9  
Old 12-28-2010
OK. Great.

Can I use a variable which contains the path in it and use it in sed statement, rather than hard coding it?

for example,

Code:
export script_path=/dev1/scripts

Code:
$echo $script_path
/dev1/scripts

# 10  
Old 12-28-2010
Code:
sed "s|.*${script_path}.*|#&|" cronfile.txt > cronfile.new


Last edited by Scrutinizer; 12-28-2010 at 04:50 PM..
This User Gave Thanks to Scrutinizer For This Post:
# 11  
Old 12-28-2010
Quote:
Originally Posted by anurag.singh
To do some action on some specific lines, some pattern has to be identified for them. Say we want to comment all lines where "pc" is a substring of script name, then:
Code:
sed '/pc/ s!.*!#&!' cron_file

Still your overall requirements are not clear. Input file is known but you need multiple processing on that file. You need to mention everything you need to do on that file along with complete expected output.
Hi Anurag,

I am a newbie to this scripting. can you please explain me what "s!.*!#&!" does in the code you have written above.

i really appreciate your solutions to users queries.
Thanks in advance.

---------- Post updated at 03:47 PM ---------- Previous update was at 03:46 PM ----------

Quote:
Originally Posted by Scrutinizer
Code:
sed "s|.*${script_path}.*|#&|" cronfile.txt


can you please explain this. I am a newbie
# 12  
Old 12-28-2010
@Scrutinizer - Your solution commenting out all the entries in cron file which i do not want to do. I want to comment only the entries matching the value in $script_path which is /dev1/scripts/


Code:
#!/bin/ksh

. /home/.profile

crontab -l > temp

sed "s|.*${script_path}.*|#&|" temp > cronfile.txt

Code:
ussbazudb129[infrep9d]:/info_d16/PC_Intg_Svc_01/Scripts/Admin_Utils>cat cronfile.txt

Code:
#0-59 * * * * /dev1/scripts/check_proc.sh >> /tmp/check_infa_proc_cron.log 2>&1
#0-59 * * * * /dev1/scripts/check_cores.sh >> /tmp/check_cores_cron.log 2>&1
#0-59 * * * * /dev1/scripts/check_repo_conn.sh >> /tmp/check_repo_conn_cron.log 2>&1
#0-59 * * * * /dev1/scripts/check_num_proc.sh >> /tmp/check_num_proc_cron.log 2>&1
#0-59 * * * * /dev1/scripts/check_pc.ksh >> /tmp/check_powercenter_cron.log 2>&1
#0-59 * * * 7 /dev1/admin/scripts/check_users.ksh /tmp/check_users.log 2>&1

# 13  
Old 12-28-2010
@svajhala

Don't forget to set the variable $script_path first..

---------- Post updated at 22:02 ---------- Previous update was at 21:51 ----------

Quote:
Originally Posted by einsteinBrain
can you please explain this. I am a newbie
Sure, with the substitution operator s you can use any character (except backslash and newline ) as a delimiter so instead of / I used | .
The pattern to match is .*${script_path}.* which matches the whole line if the contents of $script_path are part of the line. If the latter is the case then it gets replaced by a # , followed by the line that was matched ( & ) . Everything is in double quotes so that variables get expanded by the shell.

I hope I explained it clearly?

Last edited by Scrutinizer; 12-28-2010 at 05:08 PM..
These 2 Users Gave Thanks to Scrutinizer For This Post:
# 14  
Old 12-28-2010
Yes I am doing that prior to the execution of sed statement.

Code:
. /home/.profile

Code:
$cat .profile
export scripts_path=/dev1/scripts

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

SED question

I am trying to write a script that will take an input text file in the format person: place: phonenumber; person: place: phonenumber; person: place: phonenumber; ... and output it using sed too: Name ######## Location ######### Phone Number... (1 Reply)
Discussion started by: jmack56
1 Replies

2. Shell Programming and Scripting

Sed question

I need to replace the numbers with a new string. How can I give a wildcard for the different # of numbers sed '/abcdef/s/abcdef=*/abcdef=999999/'<foo>foo1 From: To: abcdef=1234 abcdef=999999 abcdef=12345 abcdef=999999 abcdef=123456... (10 Replies)
Discussion started by: beppler
10 Replies

3. Shell Programming and Scripting

sed question

hi i have a file with this line: variable=/export/home/oracle I want to change the file so that the path is replaced with the value of another variable var2=/tmp/anything. how to do this in sed? thx (4 Replies)
Discussion started by: melanie_pfefer
4 Replies

4. Shell Programming and Scripting

Sed Question 1. (Don't quite know how to use sed! Thanks)

Write a sed script to extract the year, rank, and stock for the most recent 10 years available in the file top10_mktval.csv, and output in the following format: ------------------------------ YEAR |RANK| STOCK ------------------------------ 2007 | 1 | Exxon... (1 Reply)
Discussion started by: beibeiatNY
1 Replies

5. UNIX for Dummies Questions & Answers

sed question

How would I use sed to print everything on the line after the regular expresion? I have a configuration file setting several variables. cfg.dat DDB = cpptest SUDBNAME = sucpptestdb host = cpptest Example I want to search for the regular expresion 'SUDBNAME =' and print everything on... (3 Replies)
Discussion started by: orahi001
3 Replies

6. Shell Programming and Scripting

sed question

I have a file that conatins following info Policy1=U|guestRoom=test1idCode=5(1):!:Amenity2=U|RoomId=testrma=4(1):!:| GuestRoomAmenity1=U|guestRoomId=testguest1id^rmaCode=5(1):!:| I need it to look like this Policy1=U|guestRoom=test1idCode Amenity2=U|RoomId=testrmaCode... (2 Replies)
Discussion started by: arushunter
2 Replies

7. Shell Programming and Scripting

sed question

Hi, :) can any body explain the following statement sed 's/\(\)- ]//g' cheers RRK (3 Replies)
Discussion started by: ravi raj kumar
3 Replies

8. Shell Programming and Scripting

sed question

Hi, When deleting lines using sed, as i understand the lines are redirected to the standard output. What i'm unclear about is how to actually modify the file? If I write the command sed '1,2d' test it will display lines one and 2 onto the screen however the file is not modified? I think my... (5 Replies)
Discussion started by: c19h28O2
5 Replies

9. Shell Programming and Scripting

sed question (again)

hello there, I have a sed question. I have a file (temp.srv), in it it has v1_host1 v2_host2 And I have another file (temp2.srv), in it is has v1_host3_date v1_host1 v2_host2 v2_host4_date v3_host5_date I had used a script to remove the name from temp2.srv base on the name inside... (3 Replies)
Discussion started by: ahtat99
3 Replies

10. Shell Programming and Scripting

Sed Question

Hi, Is there any way to traverse the file once and look for the following conditions in one sweep instead of going over the file 3 times with different search criteria...... sed -n '/^ORA-07445/ p' /tmp/t$$ > ${OERRFILE} sed -n '/^ORA-00600/ p' /tmp/t$$ >> ${OERRFILE} ... (1 Reply)
Discussion started by: YS2002
1 Replies
Login or Register to Ask a Question