
软件测试
文章平均质量分 55
qfnu08zzr
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
软件测试相关
随着客户对软件产品的质量要求越来越高,软件测试在整个软件研发中的地位也在逐步地提高,相应地要求测试人员掌握的测试知识和技能等也在增加。为了有效的开展软件测试工作,首先测试人员需要对软件测试有个统一的认识。 一、软件测试的目的 针对软件产品开展测试活动之前,首原创 2011-09-13 09:51:24 · 1054 阅读 · 0 评论 -
Unix/linux解压tar命令
tar [-cxtzjvfpPN] 文件与目录 .... 参数: -c :建立一个压缩文件的参数指令(create 的意思); -x :解开一个压缩文件的参数指令! -t :查看 tarfile 里面的文件! 特别注意,在参数的下达中, c/x/t 仅能存在一个!不可同时存在! 因为不可能同时压缩与解压缩。 -z :是否同时具有 gzip 的属性?亦即是否需要用 gzip 压缩? -j :是否同时原创 2012-02-06 11:57:03 · 2547 阅读 · 0 评论 -
HyperTerminal Alternatives for Windows 7 ---by Aseem
If you’ve recently upgraded to Windows 7 and are wondering what happened to HyperTerminal, you’re not alone! HyperTerminal was a sweet little program that let you connect to other computers, Telnet si转载 2012-02-14 10:46:39 · 1458 阅读 · 0 评论 -
echo the color of word.
格式: echo -e "\033[字背景颜色;字体颜色m字符串\033[0m" 其中,\033[xx; xxm 。。。\033[0m是调用颜色的开始和结束标志。 字背景颜色范围:40----49 40:黑 41:深红 42:绿 43:黄色 44:蓝色 45:紫色 46:深绿 47:白色 字颜色:30-----------39 30:黑原创 2012-05-08 11:08:30 · 500 阅读 · 0 评论 -
sch a shell script crypt toolkit.
安装: # wget http://www.datsi.fi.upm.es/%7Efrosal/sources/shc-3.8.6.tgz # tar zvxf shc-3.8.6.tgz # cd shc-3.8.6 # make test # make strings # make install 应用: 下面以mysql数据库备份(备份文件通过ftp上传到一台远程的服务器)脚原创 2012-05-08 11:02:29 · 612 阅读 · 0 评论 -
shell 脚本查看流量
#!/bin/bash if [ -n "$1" ]; then eth_name=$1 else eth_name="eth0" fi i=0 send_o=`ifconfig $eth_name | grep bytes | awk '{print $6}' | awk -F : '{print $2}'` recv_o=`ifconfig $eth_name | grep b原创 2012-05-08 11:11:59 · 480 阅读 · 0 评论