How to evaluate arithmetic expression passed as argument in awk?
I have this in a file.
1*2*3
1+2*3
awk should output 6, 7, when this file is passed in.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
awk(1)is the wrong tool as it doesn’t have aneval()function. I suggest modifying the file into input forbc(1)or using shell arithmetic expansion: