home *** CD-ROM | disk | FTP | other *** search
- h29361
- s 00007/00000/00000
- d D 1.1 95/07/06 19:05:22 tim 1 0
- c this script sets the relevant executable privilages on the files needed to run the programs
- e
- u
- U
- f e 0
- t
- T
- I 1
- #!/bin/csh -f
- echo Setting executable privilage and file permision
- foreach i (`cat shellfilelist`)
- chmod 555 $i
- end
- # special case, the setupenv needs to be editable
- chmod u+w setupenv
- E 1
-