代码搜索:SC
找到约 10,000 项符合「SC」的源代码
代码结果 10,000
www.eeworm.com/read/371608/9546485
gif sc.gif
www.eeworm.com/read/169366/9864757
db sc.db
www.eeworm.com/read/169366/9864763
px sc.px
www.eeworm.com/read/169003/9886111
gif sc.gif
www.eeworm.com/read/364173/9919237
gif sc.gif
www.eeworm.com/read/167987/9942475
sc arging.sc
#This script is called arging
BEGIN{FS=":"; name=ARGV[2]
print "ARGV[2] is "ARGV[2]
}
$1 ~ name { print $0 }
www.eeworm.com/read/167987/9942482
sc awk.sc
/tom/ { count["tom"]++ }
/mary/ { count["mary"]++ }
END{print "There are " count["tom"] " Tom's in the file and \
" count["mary"]" Mary's in the file."}
www.eeworm.com/read/167987/9942502
sc awkchecker.sc
BEGIN{RS=""; FS="\n";ORS="\n\n"}
{print NR, $1,$2,$3,$4}
www.eeworm.com/read/167987/9942510
sc awkfix.sc
# Preserving empty fields. Field width is fixed.
{
f[1]=substr($0,1,3)
f[2]=substr($0,5,3)
f[3]=substr($0,9,3)
line=sprintf("%-4s%-4s%-4s\n", f[1],f[2], f[3])
print line
}