![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
Other UNIX.COM Threads 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 04:37 AM |
| How to use awk instead of nawk? | kinmak | UNIX for Dummies Questions & Answers | 2 | 05-07-2008 01:34 AM |
| nawk/ksh help | DeltaX | Shell Programming and Scripting | 0 | 03-06-2008 11:54 AM |
| nawk -v to awk | kamel.seg | Shell Programming and Scripting | 2 | 12-18-2007 03:30 AM |
| nawk | whatisthis | Shell Programming and Scripting | 3 | 09-29-2004 10:44 AM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this 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. |
| Forum Sponsor | ||
|
|
|
|||
|
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. |