# see also : # "$d_SysMaint"'Linux/permissions notes.link.txt' - list of some somewhat-related files #48************************************************48 # www.BillHowell.ca 13Sep2023 initial # see also : # "$d_SysMaint"'Linux/chown & chmod notes.txt' - [fil, dir] access [local, remote] # "$d_SysMaint"'Linux/permissions notes.link.txt' - list of some somewhat-related files # REMOTE [doc, app]s : # "$d_SysMaint"'Linux/lftp notes.txt' - [upload, maintain] webSite, my main app for this!! # "$d_webWork"'fileops run commentary, webSite.html' - documentation, instructions # "$d_webWork"'fileops run webSite general.sh' - process to update [, sub]webSites # "$d_PROJECTS"'bin - secure/lftp update specified dir.sh' # LOCAL [doc, app]s : # "$d_bin""backup notes.txt" - notes on backup process # "$d_SysMaint"'Linux/rsync directories notes.txt' - see "$d_bin"'backup notes.txt' # "$d_bin"'backup.sh' - backup drives, see instructions to run near end of this file # "$d_bin"'fileops.sh' -> chmod_Howell() for standard permissions on my system # "$d_bin"'webSite update notes.txt' - LOCAL d_web update, notes # "$d_bin"'webSite update.sh' - d_web (LOCAL) update process (outdated?) # "$d_SysMaint"'Linux/rm notes.txt' - dangerous business!!! permissions $ sudo find "$d_web" -type d -print0 | xargs -0 chmod 755 $ sudo find "$d_web" -type f -print0 | xargs -0 chmod 644 $ sudo find "$d_PROJECTS"'webHtmlOnly/' -type d -print0 | xargs -0 chmod 755 $ sudo find "$d_PROJECTS"'webHtmlOnly/' -type f -print0 | xargs -0 chmod 644 # enddoc