代码搜索:BusyBox
找到约 1,719 项符合「BusyBox」的源代码
代码结果 1,719
www.eeworm.com/read/250015/4443417
dirname-works
test x$(dirname $(pwd)) = x$(busybox dirname $(pwd))
www.eeworm.com/read/250015/4443421
dirname-handles-relative-path
test $(busybox dirname foo/bar/baz) = foo/bar
www.eeworm.com/read/250015/4443422
dirname-handles-multiple-slashes
test $(busybox dirname foo/bar///baz) = foo/bar
www.eeworm.com/read/250015/4443423
dirname-handles-absolute-path
test $(busybox dirname /foo/bar/baz) = /foo/bar
www.eeworm.com/read/250015/4443430
gzip-removes-original-file
touch foo
busybox gzip foo
test ! -f foo
www.eeworm.com/read/250015/4443461
cut-cuts-an-open-range
test $(echo abcd | busybox cut -c -3) = abc