代码搜索:BusyBox

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

代码结果 1,719
www.eeworm.com/read/227259/4776756

grep-handles-binary-files

echo -e '\0foo' | busybox grep foo
www.eeworm.com/read/227259/4776757

echo-prints-newline

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

sed-branch-no-label

test "$(echo foo | busybox sed 'b;p')" = foo
www.eeworm.com/read/227259/4776813

rm-removes-file

touch foo busybox rm foo test ! -f foo
www.eeworm.com/read/227259/4776814

dirname-works

test x$(dirname $(pwd)) = x$(busybox dirname $(pwd))
www.eeworm.com/read/227259/4776818

dirname-handles-relative-path

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

dirname-handles-multiple-slashes

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

dirname-handles-absolute-path

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

gzip-removes-original-file

touch foo busybox gzip foo test ! -f foo
www.eeworm.com/read/227259/4776846

date-r-works

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