开发者

Using awk with variables

开发者 https://www.devze.com 2023-03-13 16:21 出处:网络
x=3 A=`echo $A|awk \'{print $x}\'` echo $A doesnt print 3. How can i use 开发者_如何学编程variables with awk*Pass variables to awk with the -v flag.
x=3
A=`echo $A|awk '{print $x}'`
echo $A

doesnt print 3. How can i use 开发者_如何学编程variables with awk*


Pass variables to awk with the -v flag.

x=3
A=`echo $A|awk -v y=$x '{print y}'`
echo $A


You can use the variables of shell by this way: "'$your-shell-variable'" or '$your-shell-variable'. The former considers the variable as string, while the later considers it as number. The following is the code you want:

x=3    
A=`echo $A|awk '{print "'$x'"}'`    
echo $A


Uh, what's the point of echoing $A? It just creates a useless fork and pipe.

x=3
A=`awk -v y=$x 'BEGIN {print y}'`
echo $A

And while I'm at it, this seems like a convoluted and expensive way to write A=$x :-)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号