mirror of
https://github.com/sheumann/hush.git
synced 2024-11-13 14:06:21 +00:00
8 lines
122 B
Plaintext
8 lines
122 B
Plaintext
|
BUSYBOX=$(type -p busybox)
|
||
|
SAVED_PATH=$PATH
|
||
|
unset PATH
|
||
|
$BUSYBOX which ls
|
||
|
STATUS=$?
|
||
|
export PATH=$SAVED_PATH
|
||
|
return $STATUS
|