#!/bin/sh
#
# CSci 487 Senior Project
# Set protections appropriately for web site
# H. Conrad Cunningham
#
echo Updated 22 May 2018 for CSci 487 web structure
#
chmod 755 * # subdirectories, executable files
chmod 700 backup save old # except these subdirectories
chmod 644 *.md *.html *.tex *.pdf *.gv *.png
chmod 644 *.doc *.docx *.ppt *.pptx *.pages
chmod 644 README *.txt *.pr
ls -aFl
echo Check settings


