echo echo Don\'t worry about any error messages like \"find: cannot open ...\" echo This just means that someone else doesn\'t have correct permissions for their files. echo # This command will give all files belonging to the current user permission -rw-r--r-- find ~elliott/web-docs/ee552/studentAppNotes/ -user $LOGNAME -type f -exec chmod 644 "{}" \; # This command will give all directories belonging to the current user permission drwxr-xr-x find ~elliott/web-docs/ee552/studentAppNotes/ -user $LOGNAME -type d -exec chmod 755 "{}" \; echo echo -=- setperm complete -=- echo Your files in ~elliott/web-docs/ee552/studentAppNotes/ are now world readable. echo If you add more files, you may need to run this script again. echo