代码搜索:BusyBox

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

代码结果 1,719
www.eeworm.com/read/173430/9658719

mk cp_tests.mk

# cp_tests.mk - Set of test cases for busybox cp # ------------- # Copyright (C) 2000 Karl M. Hegbloom GPL # # GNU `cp' GCP = /bin/cp # BusyBox `cp' BCP = $(shell pwd)/cp all::
www.eeworm.com/read/173430/9658720

mk mv_tests.mk

# mv_tests.mk - Set of tests cases for busybox mv # ------------- # Copyright (C) 2000 Karl M. Hegbloom GPL # # GNU `mv' GMV = /bin/mv # BusyBox `mv' BMV = $(shell pwd)/mv all::
www.eeworm.com/read/250015/4443353

mv-moves-empty-file

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

mv-removes-source-file

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

tr-non-gnu

echo fdhrnzvfu bffvsentr | busybox tr '[a-z]' '[n-z][a-m]'
www.eeworm.com/read/250015/4443447

rmdir-removes-parent-directories

mkdir -p foo/bar busybox rmdir -p foo/bar test ! -d foo
www.eeworm.com/read/250015/4443454

date-format-works

test x"`date +%d/%m/%y`" = x"`busybox date +%d/%m/%y`"
www.eeworm.com/read/227259/4776723

mv-moves-empty-file

touch foo busybox mv foo bar test ! -e foo test -f bar
www.eeworm.com/read/227259/4776731

mv-removes-source-file

touch foo busybox mv foo bar test ! -e foo test -f bar
www.eeworm.com/read/227259/4776743

tr-non-gnu

echo fdhrnzvfu bffvsentr | busybox tr '[a-z]' '[n-z][a-m]'