代码搜索:BusyBox
找到约 1,719 项符合「BusyBox」的源代码
代码结果 1,719
www.eeworm.com/read/146316/12659118
c klogd.c
/* vi: set sw=4 ts=4: */
/*
* Mini klogd implementation for busybox
*
* Copyright (C) 2001 by Gennady Feldman .
* Changes: Made this a standalone busybox module which uses st
www.eeworm.com/read/250015/4443386
echo-does-not-print-newline
test `busybox echo -n word | wc -c` -eq 4
www.eeworm.com/read/250015/4443402
cp-preserves-source-file
touch foo
busybox cp foo bar
test -f foo
www.eeworm.com/read/250015/4443462
cut-cuts-an-unclosed-range
test $(echo abcd | busybox cut -c 3-) = cd
www.eeworm.com/read/227259/4776759
echo-does-not-print-newline
test `busybox echo -n word | wc -c` -eq 4
www.eeworm.com/read/227259/4776783
sed-handles-embedded-slashes
test "$(echo fu/bar | busybox sed -e 's/[/]//')" = fubar
www.eeworm.com/read/227259/4776799
cp-preserves-source-file
touch foo
busybox cp foo bar
test -f foo
www.eeworm.com/read/227259/4776857
cut-cuts-an-unclosed-range
test $(echo abcd | busybox cut -c 3-) = cd