![]() |
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 |
| Shell script to format a .CSV data | Uday1982 | Shell Programming and Scripting | 8 | 02-04-2008 05:28 AM |
| how to number format a data file without using SED? | Cactus Jack | UNIX for Dummies Questions & Answers | 3 | 01-12-2008 07:47 PM |
| Add data in days:hours:min:sec format | krishna_sicsr | Shell Programming and Scripting | 1 | 03-17-2007 11:39 AM |
| data format from (4.56 0.7) -> 4.6(7) awk?! | ahan | Shell Programming and Scripting | 4 | 05-07-2006 08:53 PM |
| kstat - format of output data? | ozvena | UNIX for Dummies Questions & Answers | 4 | 06-16-2005 04:35 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
|||||
|
already have the solution
i just used the following:
Code:
grep -E "LIST|^ [0-9]" ${1} | sed 's/ --- /---/g' | sed 's/ / /g' |
awk '
/LIST/ { tag = $1 ; next }
/[0-9]/ { print tag , $0 }' > filter_out.log
cut -f1 -d" " filter_out.log > type_list.log
cut -f2 -d" " filter_out.log > field_one.log
cut -f3 -d" " filter_out.log > field_two.log
cut -f4 -d" " filter_out.log > field_three.log
cut -f5 -d" " filter_out.log > field_four.log
paste -d" " type_list.log field_one.log | grep "[0-9]" > out.txt
paste -d" " type_list.log field_two.log | grep "[0-9]" >> out.txt
paste -d" " type_list.log field_three.log | grep "[0-9]" >> out.txt
paste -d" " type_list.log field_four.log | grep "[0-9]" >> out.txt
Code:
GREEN 12321 instead of GREEN LIST : 12321 thanks anyway for the reply :P |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|