![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum 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 |
| find and replace command in one line using one command | vasikaran | UNIX for Dummies Questions & Answers | 10 | 08-20-2008 07:40 AM |
| using sed command to replace multiple lines | radha.kalivar | Shell Programming and Scripting | 1 | 07-10-2007 07:36 AM |
| How I can replace this command --need help | sudhish | Shell Programming and Scripting | 10 | 06-25-2007 05:25 AM |
| Command to replace character | HLee1981 | UNIX for Dummies Questions & Answers | 5 | 10-16-2005 10:27 PM |
| replace text in a file from the command line... | dudboy | UNIX for Dummies Questions & Answers | 1 | 09-04-2001 11:31 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
vi command - replace
Hi,
Given a long text file. How can I replace all full stops-[.] with semicolon [;] thanks, tictactoe |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
In command mode:
Code:
:%s/\./;/g |
|||
| Google The UNIX and Linux Forums |