Welcome to mirror list, hosted at ThFree Co, Russian Federation.

uuencode-sets-standard-input-mode-correctly « uuencode « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ccf23b595268ee56a1e9d3c3abffac551169fb3 (plain)
1
2
3
4
5
6
saved_umask=$(umask)
umask 0
busybox uuencode foo </dev/null | head -n 1 | grep -q 666
status=$?
umask $saved_umask
return $status