代码搜索:Works
找到约 8,996 项符合「Works」的源代码
代码结果 8,996
www.eeworm.com/read/227259/4776812
expr-works
# busybox expr
busybox expr 1 \| 1
busybox expr 1 \| 0
busybox expr 0 \| 1
busybox expr 1 \& 1
busybox expr 0 \< 1
busybox expr 1 \> 0
busybox expr 0 \
www.eeworm.com/read/227259/4776814
dirname-works
test x$(dirname $(pwd)) = x$(busybox dirname $(pwd))
www.eeworm.com/read/188906/5205282
yml works.yml
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
first:
id: 1
another:
id: 2
www.eeworm.com/read/319795/3551991
yml works.yml
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
first:
id: 1
another:
id: 2
www.eeworm.com/read/303164/3815011
cs works.cs
using System;
using System.Collections.Generic;
using System.Text;
using Db4objects.Db4o;
using System.Collections;
using Db4objects.Db4o.Query;
using System.Xml.Serialization;
using System.IO
www.eeworm.com/read/295117/3912225
basename-works
test x$(basename $(pwd)) = x$(busybox basename $(pwd))
www.eeworm.com/read/295117/3912241
tail-works
[ -n "$d" ] || d=..
tail -n 2 "$d/README" > logfile.gnu
busybox tail -n 2 "$d/README" > logfile.bb
cmp logfile.gnu logfile.bb
www.eeworm.com/read/295117/3912242
xargs-works
[ -n "$d" ] || d=..
find "$d" -name \*works -type f | xargs md5sum > logfile.gnu
find "$d" -name \*works -type f | busybox xargs md5sum > logfile.bb
diff -u logfile.gnu logfile.bb