I have a script that will pipe a parm to awk. Within awk, the parm is parsed. How do I access the variable within the awk {...} part of the script outside of the awk {...} part. Here's an example...<br><br>#ksh shell script stuff here...<br>.<br>.<br>.<br>$1¦ awk '<br>{<br>len = length($0)<br>parsed_parm = substr($0, len - 5 + 1)<br>}'<br>.<br>.<br>.<br>#more ksh shell script stuff here<br><br><br>How do I access parsed_parm outside the awk part? Please reply to <A HREF="mailto:t_monaghan@yahoo.com">t_monaghan@yahoo.com</A>. Thanks!!!!