|
I tweeked some things and I think I got it working but I need help with the output
This is what I got.
$3 !~/^[A-Z]$/ { print "Select " $1, $2 ; print "Assign " ENVIRON["BCKDRIVE"] }
(all on one line)
This prints the following:
Select Volume 0 Assign K:
What I need is for the Assign K: to be on a new line
Select Volume 0
Assign K:
|