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

@ -0,0 +1,21 @@
# awk -f FILEAWK FILELIST
BEGIN{
}
#
# main logic is here
#
{
sfile = $1
dfile = $2
cpcmd = "cp " $1 " " $2
printf "Coping %s to %s\n",sfile,dfile
system(cpcmd)
}
#
# End action, if any, e.g. clean ups
#
END{
}