Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

change permissions on all files in all sub-directories

find /path/to/directory -type f -exec chmod 664 {} ;
Comment

change permissions on all sub-directories

find /path/to/directory -type d -exec chmod 775 {} ;
Comment

find change permissions to subdirectories

sudo find /var/www/html -type d -exec chmod 755 {} ;
Comment

PREVIOUS NEXT
Code Example
Shell :: crear ramas git 
Shell :: git remove ignored files 
Shell :: function in shell script 
Shell :: install grammarly on mac brew 
Shell :: adobe acrobat reader for linux download 
Shell :: bash data types 
Shell :: npm install xlsx 
Shell :: env variable for access key and secret key in terraform 
Shell :: ubuntu open task manager 
Shell :: zip linux exclude directory 
Shell :: terminal save txt to clipboard 
Shell :: how to un zip a file in linux command line 
Shell :: django.core.exceptions.ImproperlyConfigured: Requested setting ROOT_URLCONF, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings. 
Shell :: github add image to readme.md 
Shell :: git discard unstaged files 
Shell :: git view branch 
Shell :: How to install php-simple-html-dom-parser 
Shell :: chkconfig: command not found 
Shell :: aab to apk 
Shell :: add user via drush drupal 8 
Shell :: git clone commit hash 
Shell :: installing rabbitmq on debian 
Shell :: git commit messages 
Shell :: how to paste in git bash 
Shell :: google shell 
Shell :: install cherrypy 
Shell :: add more changes to same commit 
Shell :: merge two branches from different repositories 
Shell :: bedrock linux 
Shell :: git change message specific commit 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =