代码搜索:BusyBox

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

代码结果 1,719
www.eeworm.com/read/250015/4443384

echo-prints-newline

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

rm-removes-file

touch foo busybox rm foo test ! -f foo
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/4443451

date-r-works

test x"`date -R`" = x"`busybox date -R`"
www.eeworm.com/read/250015/4443452

date-u-works

test x"`date -u`" = x"`busybox date -u`"
www.eeworm.com/read/250015/4443461

cut-cuts-an-open-range

test $(echo abcd | busybox cut -c -3) = abc