- 博客(70)
- 资源 (12)
- 收藏
- 关注
转载 if判断
if判断 .2012-11-24 16:16 8人阅读 评论(0) 收藏 编辑 删除 -b file 若文件存在且是一个块特殊文件,则为真-c file 若文件存在且是一个字符特殊文件,则为真-d file 若文件存在且是一个目录,则为真-e file 若文件存在,则为真-f file
2012-11-24 16:16:50 439
原创 python 和shell 脚本写作的基本流程
Python:#!/usr/bin/env pythondef func1(): passdef func2(): passif __name__=='__main__': func1() func2() shell:#!/usr/bin/env bashfunc1(){ #do sth}func2(){ #do sth}m...
2019-01-23 10:59:28 326
原创 JavaScript Learning
JavaScript 是一种轻量级的编程语言。javascript 是可插入HTML页面的编程代码。javascript 插入HTML页面后可以由所有现代浏览器执行。javascript 很容易学习。学习地址:http://www.w3school.com.cn/js/js_obj_date.asp http://www.w3school.com.cn/j
2015-06-10 17:29:04 385
原创 jQuery learning
////////////////////////////////////////////////////////////// JQuery Learning ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2015-06-04 13:01:17 343
转载 Csharp启动关闭进程
本文主要内容:通过代码的方式关闭进程。 以前关闭进程的方式,通常采用bat文件的方式。现在通过采用另外一种方式关闭进程。关闭进程主要思路:遍历所有进程,根据进程名称,找出需要关闭的进程。开启进程主要思路:通过递归的方式找出文件夹中所有的exe文件,并且开启。其主要代码如下:[csharp] view plaincopy #
2015-05-08 13:57:05 2116
原创 selenium learning
Learn linked 学习链接 http://pan.baidu.com/share/link?shareid=4052478095&uk=1311029430firebug download addreessMercury测试工具体系(QTP,QC,LR,WR),是强大的工具功能体系,但价格也不菲;故而thoughtworks特意把他们的Web开源工具命,命名为seleniu
2015-04-24 17:26:14 399
原创 datagridview操作
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.OleDb;using System.Data.SqlClient;using System.Drawing;using System.Linq;u
2015-02-06 17:20:41 300
原创 DataGridView表单中产生checkbox列的头也绘画成一个checkbox
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Drawing;using System.Windows.Forms;namespace _4._0NewPropert
2015-02-05 16:28:47 292
原创 C#learning materials
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.OleDb;using System.Drawing;using System.Linq;using System.Text;using Syste
2015-02-02 17:36:23 300
原创 C#学习
namespace _4._0NewProperty{ public partial class Form2 : Form { public Form2() { InitializeComponent(); //Mylabel("子窗体到父窗体", "Name4", label1_Cli
2015-01-30 11:46:30 425
原创 C#几个常用的传值例子
传值:(父窗体向子窗体传值):1. 并调用子窗体Form2的公开属性或方法 将Form1的textBox1的值设置给Form2的textBox2 public partial class Form1 : Form { public Form1() { InitializeComponent();
2015-01-28 14:50:37 333
原创 C#笔记
address:http://wenku.baidu.com/link?url=bDFZzy7VFKi8UzOVkoIMVdyRVcFsBhOiU78Qo34E78xHn8JKKKBc_nNIG-WUZVOm2rsja70zZteZohZtq3D_S33XCGz3FUzi_ae6hDup2DC
2015-01-16 17:11:40 1564
原创 C#console application
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Diagnostics;namespace ConsoleApplication1{ class Progra
2015-01-13 15:40:07 508
原创 python 类
[python] view plaincopyprint?#类定义 class people: #定义基本属性 name = '' age = 0 #定义私有属性,私有属性在类外部无法直接进行访问 __weight = 0 #定义构造方法 def __init__(self,n,a,w):
2014-08-21 17:37:00 299
原创 my if
if判断 .2012-11-24 16:16 8人阅读 评论(0) 收藏 编辑 删除 -b file 若文件存在且是一个块特殊文件,则为真-c file 若文件存在且是一个字符特殊文件,则为真-d file 若文件存在且是一个目录,则为真-e file 若文件存在,则为真-f file
2014-02-14 16:02:20 419
原创 C\C++ 覆盖率制作过程
1 简介Linux下制作覆盖率需要以下几个步骤:1、 编译程序时生成gcno文件;2、 执行程序后生成gcda文件;3、 使用lcov命令收集覆盖率信息并写入info文件;4、 使用genhtml命令生成用于展示覆盖率的html文件。2 生成gcno文件和gcda文件2.1 生成方法Gcno(gcov
2013-11-29 15:11:53 1082
原创 C++ 覆盖率 lcov工具
#!/bin/bashbase_path=`dirname $0`cd ${base_path}cd ../../build/linuxchmod -R 777 ./*USER_OPTS='-fprofile-arcs -ftest-coverage' USER_LNKS='-fprofile-arcs -ftest-coverage -lgcov' make llt-clea
2013-11-29 13:26:24 567
原创 marriage
车费:1120+600烟酒:630+1000(45*14、10*10)饮料:8*14=112饭钱:7420 (530*14)司仪:1000化妆婚纱:260总:12142————————————————————————————家电:电视机3600已卖推荐冰箱:统帅BCD-206LST 三门冰箱 报价1599 206LMid
2013-11-25 17:29:24 89
原创 python 学习
1. sys.argv[0] #当前脚本的全路径 print (sys.argv[0])2. sys.argv[1] sys.argv[2] sys.argv[3] 向python脚本里面传递参数,1代表第一个参数,2代表第二个参数,3代表第三个参数,等等。。。3.sys.platform #获取平台的环境 win 还是 linux的4.使用sys模
2013-10-31 16:21:39 347
原创 python 学习
1. sys.argv[0] #当前脚本的全路径 print (sys.argv[0])2. sys.argv[1] sys.argv[2] sys.argv[3] 向python脚本里面传递参数,1代表第一个参数,2代表第二个参数,3代表第三个参数,等等。。。3.sys.platform #获取平台的环境 win 还是 linux的4.使用sys模
2013-10-31 16:20:59 68
原创 python 例子
import os,sys,timedef list_dir(mystring): arry=os.listdir(mystring) for filename in arry: print (filename)def getDirList(p): p = str(p) if p == '': retu
2013-10-29 20:24:44 347
原创 python study
\s 匹配任何空白字符,包括空格、制表符、换页符等等。等价于 [ \f\n\r\t\v]。 \S 匹配任何非空白字符。等价于 [^ \f\n\r\t\v]。 \d 匹配一个数字字符。等价于 [0-9]。 \D 匹配一个非数字字符。等价于 [^0-9]。 \w 匹配包括下划线的任何单词字符。等价于'[A-Za-z0-9_]'。 \W 匹配任何非单词字符。等价于 '
2013-10-28 17:44:30 411
转载 linux开机自动启动脚本
前言linux有自己一套完整的启动 体系,抓住了linux启动 的脉络,linux的启动 过程将不再神秘。阅读之前建议先看一下附图。本文中假设inittab中设置的init tree为:/etc/rc.d/rc0.d/etc/rc.d/rc1.d/etc/rc.d/rc2.d/etc/rc.d/rc3.d/etc/rc.d/rc4.d/etc/rc.d/rc5.
2013-08-16 02:16:02 308
原创 if
if判断 .2012-11-24 16:16 8人阅读 评论(0) 收藏 编辑 删除 -b file 若文件存在且是一个块特殊文件,则为真-c file 若文件存在且是一个字符特殊文件,则为真-d file 若文件存在且是一个目录,则为真-e file 若文件存在,则为真-f file
2013-08-08 17:57:53 316
转载 python 面试题
1.如何用Python来进行查询和替换一个文本字符串? 答:查找a='qujinhua'b='nhu'print a[a.index(b):len(b)+a.index(b)]替换a='qujinhua'print a.replace("jin",chun)2.Python里面search()和match()的区别? 答:match()函数只检测RE是不
2013-06-14 19:42:53 438
转载 Python 字符串操作(string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、分割等)
Python 字符串操作(string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、分割等) .Python 截取字符串使用 变量[头下标:尾下标],就可以截取相应的字符串,其中下标是从0开始算起,可以是正数或负数,下标可以为空表示取到头或尾。# 例1:字符串截取str = '12345678'print str[0:1]>> 1 # 输出str位置0开始到位
2013-06-14 18:46:59 1026
原创 install
#!/bin/bash#set -x########################################################################### FUNCTION :Print log to log file genex_install.log# PARAMETER:1:string# OUT :
2013-05-23 18:43:24 379
原创 backup
#!/bin/bashnow_time=`date '+%Y%m%d%H%M%S'`function mv_file_to_tracebak(){if [ -d $path_backup_my/tracebak ]thenmv backup_log_${now_time}.tar.gz $path_backup_my/tracebak >/dev/null 2>&1
2013-05-17 17:58:11 426
原创 health tools
#!/bin/bashExtdir=`dirname $0`cd $Extdircd ../..Extdir=`pwd`if [[ -n $RUN_ID ]]thenRUN_ID=`echo $RUN_ID`elseRUN_ID=Run_`date '+%Y%m%d%H%M%S'`fifunction GeneratResult(){COMPAR
2013-05-06 10:52:11 540
原创 linux sort用法总结
# cat test.txt143# sort -r test.txt -o test.txt 可以将test.txt中的第一列按降序直接修改到test.txt文件中,即 -o选项比重定向方便快捷 -r 降序排序-o直接写到文件当中,作为修改(于sed 中的-i选项用法相似)-n将文件中的字符数字 按照数字排序-t 用某个符号进行分割开
2013-05-04 00:23:16 1313 1
原创 shell 显示
#!/bin/bashExtdir=`dirname $0`cd $Extdircd ../..Extdir=`pwd`RUN_ID=Run_`date '+%Y%m%d%H'`function GeneratResult(){COMPARE_TYPE=$1EXPECT_VALUE=$2EXPECT_VALUE_MESSAGE=$3ACTUAL_VALU
2013-04-28 14:19:50 318
转载 python 基础模块中常用函数
1.os模块 os模块包装了不同操作系统的通用接口,使用户在不同操作系统下,可以使用相同的函数接口,返回相同结构的结果。 os.name:返回当前操作系统名称('posix', 'nt', 'os2', 'mac', 'ce' or 'riscos') os中定义了一组文件、路径在不同操作系统中的表现形式参数,如 os.sep(文件夹分隔符,windows中是 \ )
2013-04-26 23:36:03 360
转载 shell 输入密码为星号
#!/bin/bash STTY_RESTORE=$(stty -g)echo -n "Username: "read username echo -n "Password: "stty -echo cbreak while true do
2013-04-25 18:17:21 452
转载 python文件夹操作
python对文件文件夹的操作 博客分类: pythonPythonPython代码 1 #-*-coding: UTF-8 -*- 2 3 import os 4 5
2013-04-25 00:32:48 561
转载 python 获取脚本传递参数 及参数个数 检查文件 变量 是否存在 退出脚本 .
[python] view plaincopyprint?import sys print sys.argv[0] ##脚本名 print sys.argv[1] ## 第一个参数 import sysprint sys.argv[0] ##脚本名print sys.argv[1] ## 第一个参数[python] view pla
2013-04-22 01:20:42 2027
转载 python函数传参4种方法
python函数传参4种方法 2011-11-05 14:50:41| 分类:python | 标签:|字号大中小 订阅1.F(arg1,arg2,...)这 是最常见的定义方式,一个函数可以定义任意个参数,每个参数间用逗号分割,用这种方式定义的函数在调用的的时候也必须在函数名后的小括号里提供个数相等的 值(实际参数),而且顺序必须相同,也就是说在这种调用
2013-04-22 01:01:36 648
原创 python
import osimport timeimport sysimport md5import hashlibimport base64 import win32com.client'''x=1while x==1: print "hello word!" breakprint "i can done"'''def DX_file(
2013-04-22 00:57:31 449
原创 shell 自动登录
#!/bin/bashexpect -c 'spawn scp /iManagerNastarV600R010C00SPC600_HP_X86_64.tar.gz root@10.144.113.215:/test/expect /iManagerNastarV600R010C00SPC600_HP_X86_64.tar.gzsend Changeme_215\ne
2013-04-09 15:43:30 457
原创 shell ftp上传下载脚本
ftp -i -n -v 10.144.199.190 /reu/log.log 2>&1user ftpuser nastar@123 bincd /opt#mgetget RS_V600R009C00SPC510B001.tar.gzclosebyeEOF 上传的ftp用户最好有root权限,防止上传文件无创建权限ftp -n 192.168.88.
2013-03-12 19:18:37 392
原创 za
增加别名 命令脚本#!/bin/shcurdir=`pwd`script_name=$1alias_name=$2if [ ! -z $script_name ]then if [ ! -z $alias_name ] then echo "alias $alias_name='$curdir/$script_name'" >>/etc/profil
2013-01-25 14:45:32 241
usb device(vid_1f3a_pid_efe8)
2022-09-23
usb device(vid_1f3a_pid_efe8)
2022-09-23
在LINUX平台上手动创建数据库(oracle_10g).
2012-11-21
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人