代码搜索:BusyBox
找到约 1,719 项符合「BusyBox」的源代码
代码结果 1,719
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