On Fri, Feb 23, 2001 at 10:25:55AM +0100, Hilmar Preusse wrote:
drachi:[~] #su - hille << EOT
echo $HOME EOT
/root drachi:[~] #su - hille -c "echo $HOME" /root drachi:[~] #su - hille -c "echo ${HOME}" /root drachi:[~] #su - hille drachi:[hille] >echo $HOME /home/hille
Ganz einfach: $HOME innerhalb der "" wird schon vor Ausführung des su expandiert.
root@max:~> su - rf11 -c "echo $HOME" /root root@max:~> su - rf11 -c 'echo $HOME' /home/rf11 root@max:~>
Reinhard