代码搜索:BusyBox

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

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

mv-follows-links

touch foo ln -s foo bar busybox mv bar baz test -f baz
www.eeworm.com/read/250015/4443371

msh-supports-underscores-in-variable-names

test "`busybox msh -c 'FOO_BAR=foo; echo $FOO_BAR'`" = foo
www.eeworm.com/read/250015/4443382

wget-retrieves-google-index

busybox wget -q -O foo http://www.google.com/ test -s foo
www.eeworm.com/read/250015/4443395

dd-accepts-if

echo I WANT >foo test "$(busybox dd if=foo 2>/dev/null)" = "I WANT"
www.eeworm.com/read/250015/4443410

cp-follows-links

touch foo ln -s foo bar busybox cp bar baz test -f baz
www.eeworm.com/read/227259/4776725

mv-follows-links

touch foo ln -s foo bar busybox mv bar baz test -f baz
www.eeworm.com/read/227259/4776741

msh-supports-underscores-in-variable-names

test "`busybox msh -c 'FOO_BAR=foo; echo $FOO_BAR'`" = foo
www.eeworm.com/read/227259/4776750

wget-retrieves-google-index

busybox wget -q -O foo http://www.google.com/ test -s foo
www.eeworm.com/read/227259/4776752

egrep-supports-extended-regexps

# FEATURE: CONFIG_FEATURE_GREP_EGREP_ALIAS echo foo | busybox egrep fo+
www.eeworm.com/read/227259/4776753

grep-matches-nul

set +e echo -e '\0' | busybox grep . if [ $? != 0 ] ; then exit 0; fi exit 1;