Hi folks, back again with more problems!
I want to set up a situation where all users will have the same config for a particular web browser.
This is as far as I have gotten, any help anyone can give me would be most appreciated!
Code:
# Bash script to copy .opera folder to all users home directories
# Become root:
sudo -s
# Change to home directory
cd /home/
# For every user, remove current opera config, and install new one:
for $USER in home
do
#remove current config file:
rm -r .opera/
#Copy in new config file
cp /home/sysadmin/config_files/.opera /home/$USER/
# Change ownership of folder to USER
chown -R $USER:$USER /home/$USER/.opera
Any improvements or insights anyone can offer will be really appreciated!