Gegeben ist folgendes Script:
Code: Alles auswählen
#!/bin/bash
if [ "$1" = "-c" ]; then
i=0;
PARAMS="";
for param in "$@"; do
if [ $i -gt 0 ]; then
PARAMS="$PARAMS $param";
fi
let i++;
done;
sudo /usr/bin/chroot /home/$USER /bin/su - $USER -c "$@"
else
sudo /usr/bin/chroot /home/$USER /bin/su - $USER
fi;
Ich verstehe absolut nicht warum.
--
Gruß,
Stefan