Oct 2, 2006 #1 calabrra Technical User Joined Sep 16, 2003 Messages 14 Location US Hello, Can an AWK function return more than one argument? For example, > return x, y; Thanks Bob
Oct 3, 2006 #2 Annihilannic MIS Joined Jun 22, 2000 Messages 6,317 Location AU To the best of my knowledge, no. However since variables are global in awk by default you can just assign additional return values to some variables. Annihilannic. Upvote 0 Downvote
To the best of my knowledge, no. However since variables are global in awk by default you can just assign additional return values to some variables. Annihilannic.