Glam Prestige Journal

Bright entertainment trends with youth appeal.

I want to do this on my current var/www/html folder flowing permissions. how to do that?

Set the following permissions.

a. sudo chgrp -R www-data
b. sudo chmod -R ug+rwx

To the following folders.

c. ./bootstrap
d. ./storage
e. ./public

1 Answer

Brace expansion allows for very compact commands.

echo /var/www/html/{bootstrap,storage,public}

Outputs

/var/www/html/bootstrap /var/www/html/storage /var/www/html/public

Your commands could be expressed as.

sudo chgrp -R www-data /var/www/html/{bootstrap,storage,public}
sudo chmod -R ug+rwx /var/www/html/{bootstrap,storage,public}

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy