发布时间:2014-02-18 23:43:49
[root@oracle11g home]# cat pysysinfo.py #!/usr/bin/env python#A System Information Gathering Scriptimport subprocess#Command 1uname = "uname"uname_arg = "-a"print "Gathering system information with %s command:\n" %unamesubprocess.call([uname,uname_arg])#Command 2diskspace = "df".........【阅读全文】
发布时间:2014-02-18 23:35:20
用Python语言封装了一个linux命令,代码如下:[root@oracle11g home]# cat pyls.py #!/usr/bin/env python#Python wrapper for the ls commandimport subprocesssubprocess.call(["ls","-l"])[root@oracle11g home]# ./pyls.py 总用量 12drwx------. 5 oracle oinstall 4096 2月 12 18:11 oracle.........【阅读全文】
发布时间:2014-02-12 16:59:51
1.从用户那里得到输入最容易的方法就是使用raw_input函数,[root@oracle11g ~]# pythonPython 2.6.6 (r266:84292, May 1 2012, 13:52:17) [GCC 4.4.6 20110731 (Red Hat 4.4.6-3)] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> user = raw_input('Enter login nam.........【阅读全文】
发布时间:2014-02-12 14:04:19
使用说明:[root@oracle11g ~]# uname --help用法:uname [选项]...输出一组系统信息。如果不跟随选项,则视为只附加-s 选项。 -a, --all以如下次序输出所有信息。其中若-p 和-i 的探测结果不可知则被省略: -s, --kernel-name输出内核名称 -n, --nodename输出网络节点上的主机名 .........【阅读全文】
发布时间:2014-02-10 19:23:33
1.连接至mysqlC:\mysql-advanced-5.6.15-winx64\bin>mysql -u root -pEnter password: ******Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 2Server version: 5.6.15-enterprise-commercial-advanced MySQL Enterprise Server -Advanced Edition (Commercial)Copyr.........【阅读全文】