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