#! /bin/csh -f # # Filename: makex # # Programmer: Br. David Carlson # # Date: March 26, 1994 # # This C shell program attaches the "execute" permission to # the file given as the command line parameter. # if ($#argv == 1) then # There should be 1 parameter chmod a+x "$argv[1]" # Give execute permission to this file for all else echo "One parameter needed, the name of the file to modify" endif