Hello All
I am running a awk script which looks like this
if( a && $1 = "51264"
{
...
}
The value 51264 may vary.
So how do I ask the user to input the value for the above program.
Like in shell scripting we perform
echo " Enter the number"
read num
and substitute num.
Regards
MP
I am running a awk script which looks like this
if( a && $1 = "51264"
{
...
}
The value 51264 may vary.
So how do I ask the user to input the value for the above program.
Like in shell scripting we perform
echo " Enter the number"
read num
and substitute num.
Regards
MP