add some stuff from RC machine config

This commit is contained in:
Mia Steinkirch 2019-06-21 16:07:46 -07:00
parent 7095235fe8
commit 54e3254e41
44 changed files with 23 additions and 8 deletions

View file

@ -1,12 +0,0 @@
# 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
}
}