代码搜索:BusyBox

找到约 1,719 项符合「BusyBox」的源代码

代码结果 1,719
www.eeworm.com/read/428548/1958889

id-un-works

test x$(id -un) = x$(busybox id -un)
www.eeworm.com/read/428548/1958890

id-g-works

test x$(id -g) = x$(busybox id -g)
www.eeworm.com/read/428548/1958935

echo-prints-newline

test `busybox echo word | wc -c` -eq 5
www.eeworm.com/read/428548/1958950

cp-dev-file

busybox cp /dev/null foo test -f foo
www.eeworm.com/read/428548/1958972

rm-removes-file

touch foo busybox rm foo test ! -f foo
www.eeworm.com/read/428548/1958973

dirname-works

test x$(dirname $(pwd)) = x$(busybox dirname $(pwd))
www.eeworm.com/read/428548/1958977

dirname-handles-relative-path

test $(busybox dirname foo/bar/baz) = foo/bar
www.eeworm.com/read/428548/1958978

dirname-handles-multiple-slashes

test $(busybox dirname foo/bar///baz) = foo/bar
www.eeworm.com/read/428548/1958979

dirname-handles-absolute-path

test $(busybox dirname /foo/bar/baz) = /foo/bar
www.eeworm.com/read/428548/1958986

gzip-removes-original-file

touch foo busybox gzip foo test ! -f foo