mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-22 05:17:59 +02:00
17 lines
166 B
Plaintext
17 lines
166 B
Plaintext
cd ${TMPDIR:-/tmp}
|
|
cp /bin/sh .
|
|
|
|
PATH=/rbin:/usr/local/rbin
|
|
hash -p /bin/rm rm
|
|
|
|
set -r
|
|
|
|
BASH_CMDS[x]=/bin/sh
|
|
|
|
BASH_CMDS[a]="sh"
|
|
a -c 'echo hello'
|
|
|
|
rm -f sh a
|
|
|
|
exit 0
|