上一页 1 ··· 113 114 115 116 117 118 119 120 121 ··· 132 下一页
摘要: 步骤阅读 步骤阅读 3 本例使用的背景色是喜大普奔的豆沙绿,比较柔和 设置为:色调:85。饱和度:120。亮度:208 即可,据说长时间使用可以缓解眼疲劳哦。 (吐槽:开什么玩笑,远离编程才能缓解眼疲劳好吗) 本例使用的背景色是喜大普奔的豆沙绿,比较柔和 设置为:色调:85。饱和度:120。亮度:2 阅读全文
posted @ 2017-10-10 17:58 kakaisgood 阅读(139) 评论(0) 推荐(0) 编辑
摘要: public static final String CR_LF = System.getProperty("os.name").startsWith("Windows") ? "\r\n" : "\n"; 阅读全文
posted @ 2017-10-10 14:51 kakaisgood 阅读(259) 评论(0) 推荐(0) 编辑
摘要: DATE=`date '+%m/%d/%Y'`TIME=`date '+%H:%M:%S'` sed -i '1i1***** start*****' test.kshsed -i '2i\ REPORT ID : START' test.kshsed -i '3i\ REPORT TITLE : 阅读全文
posted @ 2017-10-09 18:21 kakaisgood 阅读(144) 评论(0) 推荐(0) 编辑
摘要: In Bash: get year-month-day from date DATE=`date +%Y-%m-%d`get year-month-day hour:minute:second from date DATE=`date '+%Y-%m-%d %H:%M:%S'` 阅读全文
posted @ 2017-10-09 17:22 kakaisgood 阅读(335) 评论(0) 推荐(0) 编辑
摘要: export PATH=$PATH:/opsware/agent/bin/ 2种方式运行 python 1. 2. 阅读全文
posted @ 2017-10-09 15:13 kakaisgood 阅读(121) 评论(0) 推荐(0) 编辑
摘要: export TIMESTAMP=`date +%Y%m%d_%H%M%S`GDGFILE=file1_${TIMESTAMP}.txtsuffix=${GDGFILE#*_}prefix=${suffix%%_*}echo $prefixCURRENT=`date -d -7day +%Y%m%d 阅读全文
posted @ 2017-09-29 18:45 kakaisgood 阅读(147) 评论(0) 推荐(0) 编辑
摘要: select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') select * from tablename where time>= to_date('2011-05-02','yyyy-mm-dd') select * from tablename where  阅读全文
posted @ 2017-09-29 11:54 kakaisgood 阅读(161) 评论(0) 推荐(0) 编辑
摘要: &命令: xxx >/dev/null 2>&1 & 屏蔽一切logxxx >/tmp/xxx.log 2>&1 & 可以在xxx.log中看日志 阅读全文
posted @ 2017-09-26 13:40 kakaisgood 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 按文件大小排序. 总大小. 阅读全文
posted @ 2017-09-25 15:15 kakaisgood 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 统计某文件夹下文件的个数ls -l |grep "^-"|wc -l统计某文件夹下目录的个数ls -l |grep "^d"|wc -l统计文件夹下文件的个数,包括子文件夹里的ls -lR|grep "^-"|wc -l如统计/home/han目录(包含子目录)下的所有js文件则:ls -lR /h 阅读全文
posted @ 2017-09-25 14:58 kakaisgood 阅读(167) 评论(0) 推荐(0) 编辑
上一页 1 ··· 113 114 115 116 117 118 119 120 121 ··· 132 下一页