代码搜索:does
找到约 10,000 项符合「does」的源代码
代码结果 10,000
www.eeworm.com/read/227259/4776700
basename-does-not-remove-identical-extension
test xfoo = x`busybox basename foo foo`
www.eeworm.com/read/227259/4776782
sed-does-not-substitute-in-deleted-line
echo foo | busybox sed -e /foo/d -e s/foo/bar/ >foo
cmp foo /dev/null
www.eeworm.com/read/227259/4776798
cp-does-not-copy-unreadable-file
touch foo
chmod a-r foo
set +e
busybox cp foo bar
set -e
test ! -f bar
www.eeworm.com/read/227259/4776810
bzcat-does-not-remove-compressed-file
echo foo | bzip2 >foo.bz2
busybox bzcat foo.bz2
test -f foo.bz2
www.eeworm.com/read/295117/3912224
basename-does-not-remove-identical-extension
test xfoo = x`busybox basename foo foo`
www.eeworm.com/read/295117/3912291
cp-does-not-copy-unreadable-file
touch foo
chmod a-r foo
set +e
busybox cp foo bar
set -e
test ! -f bar
www.eeworm.com/read/295117/3912303
bzcat-does-not-remove-compressed-file
echo foo | bzip2 >foo.bz2
busybox bzcat foo.bz2
test -f foo.bz2
www.eeworm.com/read/428548/1958882
basename-does-not-remove-identical-extension
test xfoo = x`busybox basename foo foo`
www.eeworm.com/read/428548/1958951
cp-rhl-does_not_preserve-links
mkdir a
>a/file
ln -s file a/link
busybox cp -RHL a b
test ! -L b/link
#sh /dev/tty 2>&1
www.eeworm.com/read/428548/1958956
cp-does-not-copy-unreadable-file
touch foo
chmod a-r foo
set +e
if test `id -u` = 0; then
# run as user with nonzero uid
setuidgid 1 busybox cp foo bar
else
busybox cp foo bar
fi
set -e
test ! -f bar