Example: newcopy
### An old exam question:
# Write a csh script “newcopy <dir>” that copies files
# from the directory <dir> to the current directory.
# Only the two most recent files having the name progN.c
# are to be copied, however, where N can be any of 1, 2,
# 3, or 4. The script can be written in 3 to 5 lines:
set list = (`ls -t -1 prog[1-4].c | head -2 |