sed issues


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sed issues
# 1  
Old 05-29-2009
sed issues

Hi guys, not that used to using sed beyond the simple substitution. I am trying to check for a program (program1) and if it exists replace the standard output "program1" with a "program1(part1 part2) output if said program exists.

Code:
SW="program1 program2"
PROGRAM_TEST='echo "$SW" | grep "program1"'
if test ! "$PROGRAM_TEST" = "" ;then
     PROGRAM1_LIST="part1 part2"
     sed -e 's/program1/program1($PROGRAM1_LIST)/g' $SW > $SW2
fi
if test "$SW2" = ""; then
     echo "software: $SW"
     else
     echo "software: $SW2"
fi

I believe the problem is to do with the sed substitution as the error given is:

Code:
sed: Cannot find or open file program1
sed: Cannot find or open file program2

Any help or ideas on getting this to work?
# 2  
Old 05-29-2009
Code:
$
$ echo "program1 program2" | grep "program1" 1>/dev/null && echo "program1(part1 part2)"
program1(part1 part2)
$
$ echo "program3 program2" | grep "program1" 1>/dev/null && echo "program1(part1 part2)"
$
$

tyler_durden
# 3  
Old 06-02-2009
Thanks. worked it into a fix Smilie
# 4  
Old 06-02-2009
Quote:
Originally Posted by mikepegg
Hi guys, not that used to using sed beyond the simple substitution. I am trying to check for a program (program1) and if it exists replace the standard output "program1" with a "program1(part1 part2) output if said program exists.

Code:
SW="program1 program2"
PROGRAM_TEST='echo "$SW" | grep "program1"'
if test ! "$PROGRAM_TEST" = "" ;then
     PROGRAM1_LIST="part1 part2"
     sed -e 's/program1/program1($PROGRAM1_LIST)/g' $SW > $SW2
fi
if test "$SW2" = ""; then
     echo "software: $SW"
     else
     echo "software: $SW2"
fi

I believe the problem is to do with the sed substitution as the error given is:

Code:
sed: Cannot find or open file program1
sed: Cannot find or open file program2

Any help or ideas on getting this to work?

You haven't checked whether program1 or program2 exists. All you have done is check whether they are part of the string $SW (for which you don't need grep).
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Issues with using sed with word delimiters \< and \>

sed is not applying /d "delete line" option when I also include match word options \< and \> examples... echo cat | sed '/\<cat\>/d' will return cat for some reason echo cat | sed "/\<cat\>/d" will also still return cat. Of course I can just run this... echo cat | sed '/cat/d' and... (1 Reply)
Discussion started by: escooter87
1 Replies

2. Shell Programming and Scripting

Issues in sed command

I use SMP Tue Aug 18 15:51:48 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux We have a user-defined command called "submit" which will open a vi terminal in which we need to enter the description at 24th line and save it. In order to simplify this, i decided to create another command in which the... (3 Replies)
Discussion started by: pandeesh
3 Replies

3. Shell Programming and Scripting

Sed: removes \ from text which causes issues

Hi all, Hoping someone hoping someone might be able to help. i've got the following sed command which i'm using in a bash script that i'm trying to use to insert a new line into an already existing file so i don't have to manually enter it when setting stuff up. the existing script test2/3 are... (3 Replies)
Discussion started by: springs2
3 Replies

4. Shell Programming and Scripting

sed special characters issues

I am dusting off the sed cobwebs and had a basic question: I have a file that contains: $firewall = "on"; $cache = "on"; $dataset{'mary had a little lamb'} = "on"; and want to only change the contents of what is between the single quotes: $dataset{'big bad wolf'} = "on"; I... (3 Replies)
Discussion started by: metallica1973
3 Replies

5. Shell Programming and Scripting

Issues with sed on SunOS

Why does the below command doesnt work fine on SunOS 5.10 $ cat t | AK| | | | | DS | | | | tAR | | | | | FIL | $ sed -e 's/^ *//g' -e 's/ *$//g' -e 's/ *| */|/g' t |AK|||||DS|||| tAR|||||FIL| ##notice before tAR works fine on Linux OR AIX though ... (8 Replies)
Discussion started by: Shivdatta
8 Replies

6. Homework & Coursework Questions

sed & cut command issues

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: After using the egrep command to pull certain lines from the asg5f1 (creating the asg5f1c file), I am required... (1 Reply)
Discussion started by: robrom78
1 Replies

7. Shell Programming and Scripting

sed pattern and hold space issues

Good day. Trying to make a sed script to take text file in a certain format and turn it into mostly formatted html. I'm 95% there but this last bit is hurting my head finally. Here's a portion of the text- Budgeting and Debt: Consumer Credit Counseling of Western PA CareerLink 112... (5 Replies)
Discussion started by: fiendracer
5 Replies

8. Shell Programming and Scripting

Filtering Issues Using sed and awk

Hi, I am currently using the sed and awk commands to filter a file that has multiple sets of data in different columns. An example of part of the file i am filtering is as follows; Sat Oct 2 07:42:45 2010 01:33:46 R1_CAR_12.34 Sun Oct 3 13:09:53 2010 00:02:34 R2_BUS_56.78 Sun... (4 Replies)
Discussion started by: crunchie
4 Replies

9. Shell Programming and Scripting

sed edit in place -i issues

Hello, I am attempting to create a command that I can eventually put into a loop so I can edit 1file on many servers. I would like to edit the file in place with sed -i. If not I will take any suggestions on how to use a temp file. I need to remove a email address from the configuration file... (4 Replies)
Discussion started by: abacus
4 Replies

10. Shell Programming and Scripting

sed issues with strange char

Hi all, I try to create a shell script to had the xiti tag at the end of servals web pages just before the <body/> tag. here is my script : #!/bin/bash ################################################################## rm -R /home/hibern/TEMP/hibern cp -R... (5 Replies)
Discussion started by: hibern
5 Replies
Login or Register to Ask a Question