DEV Community

Lam
Lam

Posted on

Awk: if-else statement

awk -v count=2 'BEGIN {
    if (count == 1)
        print "Yes";
    else
        print "Huh?";
}'
Enter fullscreen mode Exit fullscreen mode

#Ternary operator

awk -v count=2 'BEGIN {
    print (count==1) ? "Yes" : "Huh?";
}'
Enter fullscreen mode Exit fullscreen mode

Useful links

Top comments (0)