awk -v count=2 'BEGIN {
if (count == 1)
print "Yes";
else
print "Huh?";
}'
#Ternary operator
awk -v count=2 'BEGIN {
print (count==1) ? "Yes" : "Huh?";
}'
Useful links
awk -v count=2 'BEGIN {
if (count == 1)
print "Yes";
else
print "Huh?";
}'
awk -v count=2 'BEGIN {
print (count==1) ? "Yes" : "Huh?";
}'
Useful links
For further actions, you may consider blocking this person and/or reporting abuse
Ikoh Sylva -
Peter Mbanugo -
mohamed Tayel -
madina1575 -
Top comments (0)