mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
7 lines
131 B
Plaintext
7 lines
131 B
Plaintext
saved_umask=$(umask)
|
|
umask 0
|
|
busybox uuencode foo </dev/null | head -n 1 | grep -q 666
|
|
status=$?
|
|
umask $saved_umask
|
|
return $status
|