mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-10 10:44:59 -04:00
12 lines
No EOL
194 B
Awk
12 lines
No EOL
194 B
Awk
# awk -f for_loop.awk
|
|
|
|
BEGIN {
|
|
printf "To test for loop\n"
|
|
printf "Press CTRL + C to stop\n"
|
|
}
|
|
{
|
|
for(i=0;i<NF;i++)
|
|
{
|
|
printf "Welcome %s, %d times.\n" ,ENVIRON["USER"], i
|
|
}
|
|
} |