История изменений
Исправление Kroz, (текущая версия) :
$ cat test.sh
#!/bin/bash
whoami
echo "${EUID}"
touch /delme
rm /delme
$ whoami
kroz
$ ls -la test.sh
-rwsr-xr-x 1 root root 58 июн 7 00:07 test.sh
$ stat -c "%a %n" test.sh
4755 test.sh
$ ./test.sh
kroz
1000
touch: cannot touch ‘/delme’: Permission denied
rm: cannot remove ‘/delme’: No such file or directory
Исходная версия Kroz, :
$ cat test.sh
#!/bin/bash
whoami
echo "${EUID}"
touch /delme
rm /delme
$ whoami
kroz
$ stat -c "%a %n" test.sh
4755 test.sh
$ ./test.sh
kroz
1000
touch: cannot touch ‘/delme’: Permission denied
rm: cannot remove ‘/delme’: No such file or directory