按类别查询搜索结果
关于关键词 的检测结果,共 887
xiaolilinux | 2011-11-07 21:28:20 | 阅读(0) | 评论(0)
半成品--就不公开了【阅读全文】
【Python/Ruby】 检测录----shell实现
xiaolilinux | 2011-11-07 17:25:13 | 阅读(0) | 评论(0)
【Python/Ruby】 3 测试录创建结果
yuweixian4230 | 2011-11-04 08:30:20 | 阅读(812) | 评论(0)
lrfgjj2 | 2011-11-02 14:18:23 | 阅读(11528) | 评论(0)
ericxlin | 2011-10-28 20:15:31 | 阅读(852) | 评论(0)
CU技术文章 | 2011-10-27 09:42:20 | 阅读(1475) | 评论(0)
| 2011-10-24 16:26:27 | 阅读(2300) | 评论(0)
CU技术文章 | 2011-10-21 09:35:23 | 阅读(1187) | 评论(0)
CU技术文章 | 2011-10-20 09:16:17 | 阅读(1178) | 评论(0)
【Python/Ruby】 perl命令常用选
ly1983 | 2011-10-19 12:34:32 | 阅读(1270) | 评论(0)
perl命令常用选项【阅读全文】
sunjiangang-ok | 2011-10-18 09:02:09 | 阅读(1348) | 评论(0)
yaofang123 | 2011-10-16 19:56:36 | 阅读(12) | 评论(0)
ly21st | 2011-10-14 10:16:14 | 阅读(210) | 评论(0)
#!/bin/bashfunction trapper () {  echo "In trapper" trap 'echo "Caught in a trap!"' INT  # Once set, this trap affects the entire script. Anytime # ^C is entered, the script will ignore it.}while :do echo "In the main script" trapper  echo "Still in ma...【阅读全文】
【Python/Ruby】 ksh函数中处中断
ly21st | 2011-10-13 15:30:46 | 阅读(160) | 评论(0)
#!/bin/kshfunction trapper {  print "In trapper" trap 'print "Caught in a trap!"' INT  print "Got here." sleep 25}while :do print "In the main script" trapper   # Call the function print "Still in main" sleep 5 print "Bye"do...【阅读全文】
【Python/Ruby】 中断异常处
ly21st | 2011-10-12 21:22:14 | 阅读(300) | 评论(0)
#!/bin/shtrapper () {   echo "In trapper" trap 'echo "Caught in a trap!"' 2  # Once set, this trap affects the entire script. Anytime # ^C is entered, the script will ignore it.}while :do echo "In the main script" trapper  echo "Still in main"&nb...【阅读全文】
ly21st | 2011-10-12 21:12:42 | 阅读(170) | 评论(0)
#!/bin/sh# Program opts2# Using getopts -- Second try --while getopts xy options 2> /dev/nulldo case $options in x) echo "you entered -x as an option";; y) echo "you entered -y as an option";; \?) echo "Only -x and -y are valid options"  1>&2;; esacdone...【阅读全文】
【Python/Ruby】 命令行选
ly21st | 2011-10-12 21:07:36 | 阅读(170) | 评论(0)
#!/bin/sh# Program opts1# Using getopts -- First try --while getopts xy optionsdo case $options in x) echo "you entered -x as an option";; y) echo "you entered -y as an option";; esacdone【阅读全文】
yueming | 2011-10-11 16:54:46 | 阅读(2423) | 评论(0)
【Python/Ruby】 Perl 时间日期处
huaius | 2011-10-10 11:35:34 | 阅读(10710) | 评论(0)
【Python/Ruby】 文件录遍历
ly21st | 2011-10-10 11:09:12 | 阅读(300) | 评论(0)
from nt import *def walk(top, topdown=True, onerror=None):          from os.path import join, isdir, islink    # We may not have read permission for top, in which case we can't    # get a list of the files the directory ...【阅读全文】