代码搜索:BusyBox

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

代码结果 1,719
www.eeworm.com/read/295117/3912231

id-un-works

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

id-g-works

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

echo-prints-newline

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

rm-removes-file

touch foo busybox rm foo test ! -f foo
www.eeworm.com/read/295117/3912307

dirname-works

test x$(dirname $(pwd)) = x$(busybox dirname $(pwd))
www.eeworm.com/read/295117/3912311

dirname-handles-relative-path

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

dirname-handles-multiple-slashes

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

dirname-handles-absolute-path

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

gzip-removes-original-file

touch foo busybox gzip foo test ! -f foo
www.eeworm.com/read/295117/3912340

date-r-works

test x"`date -R`" = x"`busybox date -R`"