08 2019 档案

摘要:在python2.6下连接db2,步骤: 1、安装python2.6. (注:目前db2的驱动还不支持2.7) 2、安装setuptools,下载地址http://pypi.python.org/pypi/setuptools 3、设置环境变量path:增加C:\Python26;C:\Python 阅读全文
posted @ 2019-08-19 08:41 一个苦逼的运维人 阅读(1608) 评论(0) 推荐(0)
摘要:链接来自他们分享,,,, 如有侵权,请联系本人删除,本人将立即删除。停止分享。 https://blog.csdn.net/fengzijinliang/article/details/42520211 阅读全文
posted @ 2019-08-07 08:41 一个苦逼的运维人 阅读(526) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2019-08-06 11:06 一个苦逼的运维人 阅读(559) 评论(0) 推荐(0)
摘要:#!/bin/bash#Create_Time 2019-08-06#use: small_wei #查找并,批量修改文件后缀 #后缀为 .txt 修改为 .log find /opt -name "*.txt" | awk -F ".txt" '{print $1}' | while read i do mv ${i}.txt ${i}.log done 阅读全文
posted @ 2019-08-06 10:50 一个苦逼的运维人 阅读(931) 评论(0) 推荐(0)