I want to be able to call a shell script contining the following command
awk -F $'\xE7' '{OFS ="¬"} { $3 = sprintf("%010s". $3) ; print $0 }' > outputfile
but i want to be able to pass into this command a shell script variable which will be used to replace the $3 within the awk command.
any ideas how to pass a shell script variable into this awk command
thanks
M