![]() |
|
|
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 |
| Loop problem with one more problem | aliahsan81 | Shell Programming and Scripting | 3 | 01-07-2009 02:02 AM |
| problem in finding a hardware problem | girish.batra | SUN Solaris | 8 | 09-09-2008 11:10 AM |
| ssh script problem problem | pcjandyala | Shell Programming and Scripting | 2 | 07-31-2008 04:27 PM |
| problem with dd command or maybe AFS problem | Anta | Shell Programming and Scripting | 0 | 08-25-2006 11:10 AM |
| SSH Problem auth problem | budrito | UNIX for Advanced & Expert Users | 1 | 03-17-2004 10:12 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Problem with awk
I have a file from where i need to extrat 2nd column:
sample input is : "THHSBC001900000006 CSG00100000 OTHOTH THB AA0100101100", "THHSBC001", "1-01-01", "THB" "THHSBC001900273009 AOC00100000 OTHOTH THB AA0100106260", "THHSBC001", "1-01-01", "THB" "THHSBC001902501940 SDY00100000 OTHOTH USD AA0100102000", "THHSBC001", "1-01-01", "USD" the record in bold letter is just one record and so the other . Now, columns are seperated by commas and "THHSBC001900000006 CSG00100000 OTHOTH THB AA0100101100" is 1 st column THHSBC001 is 2nd column but when i try to extract 2nd column i.e. THHSBC001 using follwing code, while read Record1 do Acct_Num=`echo $Record1 | awk '{print $2 }'` echo "Acct_Num is $Acct_Num" done < $REGSeqFileName i am getting CSG00100000 thing from 1st column , is there any way so that i can get desired ouput. Thanks |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|