代码搜索:try
找到约 10,000 项符合「try」的源代码
代码结果 10,000
www.eeworm.com/read/221205/14753896
try
#!/bin/ksh
#(@) 任务调度机制
# 功能: 检查输入字段的内容是否合法
# 用法: getTaskFmt 任务号如 CM_CFG_0007
# 返回 0 -- 字段合法 其他 -- 字段检查不合法
function chkInputField
{
dictName=$1
dictValue=$2
$HOME/hpux/etc/seek $dictName |
www.eeworm.com/read/221205/14753913
try
#!/bin/ksh
name="#原始文件保存周期"
expr "$name" : '^#.*$'
expr "$name" : '^\(#\).*$'
ex fun.cfg1
www.eeworm.com/read/221205/14753928
try
#!/bin/ksh
OLDIFS=$IFS
IFS="|"
while read -r f1 f2 f3 f4
do
echo "f1 is [$f1]"
echo "f2 is [$f2]"
echo "f3 is [$f3]"
echo "f4 is [$f4]"
done < a
www.eeworm.com/read/221205/14753949
try
#!/bin/ksh
awk '
BEGIN {
FS="|";
}
NR > 1 {
print "NF is " NF;
for ( i = 1; i < NF+1; i++ ){
print "#" i " [" $i "]";
gsub( " ","",$i );
print
www.eeworm.com/read/221205/14754007
try
#!/bin/ksh
name="#原始文件保存周期"
expr "$name" : '^#.*$'
expr "$name" : '^\(#\).*$'