![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
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 |
| Split large file and add header and footer to each file | ashish4422 | Shell Programming and Scripting | 1 | 04-15-2008 06:12 AM |
| Split a file with no pattern -- Split, Csplit, Awk | madhunk | UNIX for Dummies Questions & Answers | 10 | 12-17-2007 12:57 PM |
| split the file name | rinku | Shell Programming and Scripting | 1 | 05-28-2007 01:47 AM |
| How to split file by tags inside file? | spookyrtd99 | Shell Programming and Scripting | 1 | 07-31-2006 12:50 AM |
| Split file using awk | pvar | Shell Programming and Scripting | 8 | 07-21-2004 09:41 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Need to split the file
I have a file that has text in the format below
/users/test/krachel/ ! Some text ! Some Text /user/test/limo ! some text ! some text ! Some text /user/test/krachel ! Some text How can I seperate the text between a pair of '/users/test/' into seperate files ??? any information would be of great help. Thanks want to split data like this File001 /users/test/krachel/ ! Some text ! Some Text File002 /user/test/limo ! some text ! some text ! Some text |
|
||||
|
see if this is right
Code:
csplit -f outfile. inputfile "/\/user\/test\//" {1}
|
|
||||
|
The awk script gives error cant open file
|
| Sponsored Links | ||
|
|