![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| dynamic editing using shell script | habzone2007 | Shell Programming and Scripting | 1 | 05-14-2008 07:55 PM |
| editing a file via a shell script ?? | jimmyc | Shell Programming and Scripting | 2 | 03-28-2008 08:21 AM |
| Reading file names from a file and executing the relative file from shell script | anushilrai | Shell Programming and Scripting | 4 | 03-10-2006 01:25 AM |
| Editing files in shell programing | nir_s | Shell Programming and Scripting | 0 | 07-13-2005 01:53 AM |
| Editing a file using a script | Ypnos | Shell Programming and Scripting | 45 | 07-02-2003 06:39 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Editing a file in a shell script
Using Solaris 8.
I need to create a shell script that will edit a text file. I need to look in the text file and do a search and replace. For instance, the text file name is always 'filename'. I need to open filename and replace every instance of 'oldtext' with 'newtext'. 'oldtext' is static. newtext is a variable that I will pass to the shell via the 'read' command further up in the script. I've got most of the script written....I can pass the variables and create directorys, copy files etc, but I don't know how to edit a text file in a shell. Thanks, |
| Forum Sponsor | ||
|
|
|
|||
|
Quote:
cat oldfile | sed -e "s/testpattern/$REPL/g" > newfile |