代码搜索:BusyBox

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

代码结果 1,719
www.eeworm.com/read/357352/3016218

tests var2.tests

_1=http://busybox.net echo $_1 echo ${_1}_abc
www.eeworm.com/read/135153/5887852

c expr.c

/* vi: set sw=4 ts=4: */ /* * Mini expr implementation for busybox * * based on GNU expr Mike Parker. * Copyright (C) 86, 1991-1997, 1999 Free Software Foundation, Inc. * * Busybox modifications
www.eeworm.com/read/173430/9658763

c expr.c

/* vi: set sw=4 ts=4: */ /* * Mini expr implementation for busybox * * based on GNU expr Mike Parker. * Copyright (C) 86, 1991-1997, 1999 Free Software Foundation, Inc. * * Busybox modifications
www.eeworm.com/read/146316/12659064

c expr.c

/* vi: set sw=4 ts=4: */ /* * Mini expr implementation for busybox * * based on GNU expr Mike Parker. * Copyright (C) 86, 1991-1997, 1999 Free Software Foundation, Inc. * * Busybox modifications
www.eeworm.com/read/250015/4443342

wc-prints-longest-line-length

test `echo i\'m a little teapot | busybox wc -L` -eq 19
www.eeworm.com/read/250015/4443343

wc-counts-lines

test `echo i\'m a little teapot | busybox wc -l` -eq 1
www.eeworm.com/read/250015/4443345

wc-counts-words

test `echo i\'m a little teapot | busybox wc -w` -eq 4
www.eeworm.com/read/250015/4443346

wc-counts-characters

test `echo i\'m a little teapot | busybox wc -c` -eq 20
www.eeworm.com/read/250015/4443359

mv-moves-file

touch foo busybox mv foo bar test ! -f foo -a -f bar
www.eeworm.com/read/250015/4443394

dd-copies-from-standard-input-to-standard-output

test "$(echo I WANT | busybox dd 2>/dev/null)" = "I WANT"