![]() |
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 |
| UNIX for Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to access values of awk/nawk variables outside the awk/nawk block? | saniya | Shell Programming and Scripting | 5 | 05-13-2008 07:37 AM |
| How to use awk instead of nawk? | kinmak | UNIX for Dummies Questions & Answers | 2 | 05-07-2008 04:34 AM |
| nawk/ksh help | DeltaX | Shell Programming and Scripting | 0 | 03-06-2008 03:54 PM |
| nawk -v to awk | kamel.seg | Shell Programming and Scripting | 2 | 12-18-2007 07:30 AM |
| nawk | whatisthis | Shell Programming and Scripting | 3 | 09-29-2004 01:44 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
nawk & awk
###----------------------TEST FOR $ Value------------------------
sort $RTF 2>>$LOG | nawk -F\| '\ { for( i=1; i<=NF; ) { if( i == NF ) { amt=substr($i,1,1) #$ value if (amt == /^ *[0-9] /) printf( "$%s\n", $i ); else printf( "%s\n", $i ); } else printf( "%s|", $i ); i++; } }' >$RFF 2>>$LOG ###--------------------------------------------------------------- I need an actual $ symbol in front of the value that is stored in NF (last value after the pipe. I tried both awk & nawk & it would not give me the result. |
|
||||
|
ITEM67|WFLX|39.99
ITEM68|WGEN|new ITEM72|WGEN|new ITEM73|WGEN|new ITEM75|WGEN|new ITEM76|WGEN|new ITEM78|WFLX|39.99 ITEM80|WGEN|new ITEM83|WGEN|new ITEM84|WFLX|44.99 ITEM85|WFLX|39.99 so if there is only a 39.99 or 44.99 I want it to have a '$' sign in front. |
|
||||
|
Thanks a lot. That worked.
|
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|