Quantcast
Channel: Using chown $USER:$USER inside bash script - Unix & Linux Stack Exchange
Viewing all articles
Browse latest Browse all 6

Answer by Tim Cutts for Using chown $USER:$USER inside bash script

$
0
0

If, for some reason, $USER is not set, you can use the id command to obtain the identity of the real user. So the first time you use the $USER variable, you can use the shell expansion to supply a default value. Change the chown line in your script to:

sudo chown ${USER:=$(/usr/bin/id -run)}:$USER /var/www/$sitename

If USER is empty or unset when this is run, bash will set the USER variable to the output of /usr/bin/id -run


Viewing all articles
Browse latest Browse all 6

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>