Script usando sed adiciona um “e” aos arquivos de saída

17

Eu tenho um script que adiciona um novo usuário e cria um host virtual para o nome de domínio dos usuários. O script funciona muito bem com uma exceção ... em / etc / apache2 / sites-available / todos os meus arquivos host virtuais têm duas cópias, uma com e e outra sem.

Eu acredito que meu problema está quando uso o comando SED. Posso obter uma segunda opinião?

Aqui está o script:

# set the working directory
dir=$(pwd)

# request the new domain name
printf "Enter the new domain name, without the www (i.e newdomain.com):\n"
read newdomain

# request the new username
printf "Enter the new username (i.e newusername):\n"
read username

# create the new user
sudo adduser $username

# copy the virtual host to sites-available
sudo cp /templates/domain-vhost /etc/apache2/sites-available/$newdomain

# echo results
echo "Successfully created the virtual host file at: /etc/apache2/sites-available/$newdomain.."

# change the domain name in the virtual host file
sudo sed -ie "s/NEWDOMAINNAME/$newdomain/" /etc/apache2/sites-available/$newdomain

# echo results
echo "Modified the virtual host to reflect the new domain: $newdomain.."

# change the directory path in the virtual host
sudo sed -ie "s/NEWUSERNAME/$username/" /etc/apache2/sites-available/$newdomain

# echo results
echo "Successfully modified the new virtual host file.."

# enable the site with apache
cd /etc/apache2/sites-available/
sudo a2ensite $newdomain

# echo results
echo "Successfully enabled the $newdomain.."

# change to previous working directory
cd $dir

# reload apache
sudo /etc/init.d/apache2 reload

# notify user of action
echo "Finished creating the new domain, $newdomain, and restarted Apache.."
    
por jason.dot.h 04.07.2011 / 19:36

1 resposta

14

Você precisa separar os argumentos -i e -e para sed. -ie está dizendo ao sed para criar um arquivo de backup com um 'e' anexado.

Para corrigir, basta substituir a chamada do sed para:

sudo sed -i -e "s/NEWUSERNAME/$username/" /etc/apache2/sites-available/$newdomain
    
por Jeremy Kerr 05.07.2011 / 04:39

Tags