![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| optimize for file reading | julirani | Shell Programming and Scripting | 2 | 04-08-2009 03:07 AM |
| How to optimize our tape backups ? | Browser_ice | AIX | 6 | 03-17-2009 05:52 PM |
| Can we optimize this simple script ? | rajavu | UNIX for Dummies Questions & Answers | 8 | 01-13-2009 10:44 AM |
| optimize the script | amitrajvarma | Shell Programming and Scripting | 3 | 11-26-2007 10:18 AM |
| compress/optimize html | smap | Shell Programming and Scripting | 3 | 11-28-2006 12:48 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
can we optimize this command ? Code:
sed 's#AAAA##g' /study/i.txt | sed '1,2d' | tr -d '\n\' > /study/i1.txt; as here i am using two files ...its overhead..can we optimise to use only 1 file Code:
sed 's#AAAA##g' /study/i.txt | sed '1,2d' | tr -d '\n\' > /study/i.txt; keeping them same but it doesnt work !! anyother way so that i can use only 1 file or so ? thanks Last edited by Franklin52; 09-27-2009 at 05:26 PM.. Reason: Please use code tags!! |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|