![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need Replacement for sed | dbsurf | Shell Programming and Scripting | 0 | 01-25-2008 03:47 PM |
| Regarding Replacement | rajx | UNIX for Dummies Questions & Answers | 2 | 05-22-2007 06:19 AM |
| String Replacement with Perl | Lindarella | Shell Programming and Scripting | 4 | 09-29-2006 11:05 AM |
| Replacement using sed | handak9 | UNIX for Dummies Questions & Answers | 5 | 07-13-2004 08:28 AM |
| cpu replacement. help | IMPTRUE | UNIX for Dummies Questions & Answers | 3 | 07-25-2003 05:40 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Replacement of sed with perl
Hi using the below cmd i am identifying wheether last character in each line in thousands of files as semicolon or not.If last character is semicolon i am removing semicolon .If last character is not semicolon then i am appending next line to present line .
For example my input file consists of ABC|FGH|HJK|JKK; BHJ|AAA|BBB|L NNNN|JJJJ|LLLL; JJJJJJ; out put file consists of ABC|FGH|HJK|JKK BHJ|AAA|BBB|L NNNN|JJJJ|LLLL JJJJJ I am achieving the above requirement using sed as below sed -e :a -e '/;$/!N;s/\n//; ta' -e 's/;$//' file but i have thousands of files in one directory its consuming more and more time . Can anyone replace the above requirement in perl with xargs like xargs perl option cn anyone suggest the easiest way without looping |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
how about sed:
Code:
sed -e :a -e '/$;/N; s/\\\n//; s/$;//; ta' oldfile > newfile |
|
#3
|
|||
|
|||
|
Hi Jim ,
The above code works with sed but it is consuming too much time ..can you provide the same with perl syntax. THe functionality is it has to identify last character in each line of all files as semicolon.if it founds as semicolon it has to replace with blank space otherwise need to append next line with present one. |
|
#4
|
|||
|
|||
|
see your other thread
|
|
#5
|
|||
|
|||
|
cn anyone provide me the solution for replacing sed with perl in the above
|
|||
| Google The UNIX and Linux Forums |