上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页
摘要: 经过实验发现,命令sed 's/pattern/replacement/' file中,pattern使用的并不是完全的正则表达式,而如果想使用正则表达式,需要使用sed命令的 -r 选项: sed -r 's/RegexPattern/replacement/' file 分析: 第三个命令ech 阅读全文
posted @ 2016-05-17 21:23 morein2008 阅读(367) 评论(0) 推荐(0)
摘要: 引自:http://www.fengdingbo.com/shell-stop-procedure.html 阅读全文
posted @ 2016-05-17 20:12 morein2008 阅读(472) 评论(0) 推荐(0)
摘要: 1.去Oracle官网下载最新的jdk,解压,配置环境变量(直接改 /etc/profile) 参考:http://www.cnblogs.com/aaronhoo/p/5293118.html2.再就是将我们装好的SUN JDK装到系统里,sudo update-alternatives --in 阅读全文
posted @ 2016-05-17 15:57 morein2008 阅读(1766) 评论(0) 推荐(0)
摘要: centos安装chrome:去官网下载chrome安装包(xxx.rpm),带软件安装工具的系统双击该xxx.rpm就能自动安装,或者sudo rpm -i xxx.rpm安装。 centos卸载自带firefox,然后安装最新版本: 1.卸载自带firefoxyum -y remove fire 阅读全文
posted @ 2016-05-17 15:55 morein2008 阅读(928) 评论(0) 推荐(0)
摘要: 为chrome安装flash: 打开终端,输入:sudo apt-get install pepperflashplugin-nonfree 或官网下载安装google-chrome-stable 为firefox安装: 参考:http://jingyan.baidu.com/article/2fb 阅读全文
posted @ 2016-05-13 18:12 morein2008 阅读(977) 评论(0) 推荐(0)
摘要: http://wapwenku.baidu.com/view/04714847b307e87101f69656.html?ssid=0&from=1086k&uid=0&pu=usm@0,sz@1320_2002,ta@iphone_1_8.4_2_6.4&bd_page_type=1&baidui 阅读全文
posted @ 2016-05-05 23:37 morein2008 阅读(463) 评论(0) 推荐(0)
摘要: 学习:http://www.cnblogs.com/Lands-ljk/p/5444619.html 阅读全文
posted @ 2016-04-29 16:43 morein2008 阅读(488) 评论(0) 推荐(0)
摘要: 相比第一版,新增:菜单,对话框,文件过滤器,操作结果保存,配置功能(自己写了一个读写配置文件的功能),提示语优化,模块分化更合理。 截图: 源代码: UniqFile-wxPython-v6.py: WorkerThread.py: Dialogs.py: MyConfig.py: Utils.py 阅读全文
posted @ 2016-04-29 16:20 morein2008 阅读(451) 评论(0) 推荐(0)
摘要: 1 # -*- coding: gbk -*- 2 3 def uniq(ls): 4 lsCopy=[e for e in ls] 5 for i in xrange(1,len(ls)): 6 for j in xrange(i): 7 if ls[j]!=ls[i]: 8 pass ... 阅读全文
posted @ 2016-04-29 15:56 morein2008 阅读(1482) 评论(0) 推荐(0)
摘要: 判断是否是整数或小数,在网上看到一个方法: 后来又看到《Python:eval的妙用和滥用》 ,一试果然会列出当前目录的所有文件,觉得还是用正则表达式实现安全。 下面是关于正则表达式的几篇好文,介绍很详细 http://blog.csdn.net/windone0109/article/detail 阅读全文
posted @ 2016-04-27 18:58 morein2008 阅读(241) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页