博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年1月29日

摘要: yy : cory the current line.p : paste.0(number ) : move cursor to the front of the current line.$ : move cursor to the end of the current line.u : undoctrl + r : redoN[ESC] : repeat. eg: 10p : past ... 阅读全文

posted @ 2013-01-29 15:51 钟悍 阅读(216) 评论(0) 推荐(0) 编辑

摘要: package com.karl.multithread;public class Test { public static void main(String[] args) { Printer p = new Printer(); Thread t1 = new NumberPrinter(p); Thread t2 = new LetterPrinter(p); t1.start(); t2.start(); }}class Printer { private int index = 1; pub... 阅读全文

posted @ 2013-01-29 14:30 钟悍 阅读(243) 评论(0) 推荐(0) 编辑

摘要: #!/bin/bashRemoveIP=127.0.0.1RemovePort=80NumberOfWgetPerInterval=3Interval=3FileName=vodExtension=txtPostFixStart=1PostFixEnd=10WgetLimitRate=1024000kfunction main(){ postFix=$PostFixStart ( while : do if [ $postFix -gt `expr $PostFixEnd - $NumberOfWgetPerInterval` ]; then ... 阅读全文

posted @ 2013-01-29 14:19 钟悍 阅读(261) 评论(0) 推荐(0) 编辑