mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 21:07:57 +02:00
18 lines
167 B
Plaintext
18 lines
167 B
Plaintext
cd ${TMPDIR:-/tmp}
|
|
cp /bin/sh .
|
|
ln sh a
|
|
|
|
PATH=/rbin:/usr/local/rbin
|
|
hash -p /bin/rm rm
|
|
|
|
set -r
|
|
|
|
hash -p /bin/sh sh
|
|
|
|
hash -p sh a
|
|
a -c 'echo hello'
|
|
|
|
rm -f sh a
|
|
|
|
exit 0
|