每天一個小功能(vim等)

來源:互聯網
上載者:User

2011-11-17

  1. vim基本配置

    set nocompatible
    set columns=80
    set tabstop=4
    set ruler
    set expandtab
    set number
    set ignorecase
    set wrapmargin=15
    set cindent
    set shiftwidth=4
    syntax on

    代碼著色 顯示行號 等:

  2. vim tab鍵變為4個空格
    set expandtab # 使用space代替tab.
    set tabstop=4 # 四個空格。
     set shiftwidth=4 # 自動縮排的寬度。
  3. ssh的退格鍵 (OT)
    經常出現進入python互動後,按退格鍵 出現 “^H^H^H” 而不是刪除字元
     option->session option ->Terminal->Emulation->mapping keys other mappings 裡勾選Backspace sends delete
  4. jmeter無介面方式運行:
    JMeter -n -t "xxx.jmx" -l test.log
  5. Linux的grep命令中使用OR,AND,NOT操作符
    OR:
    1 grep 'pattern1\|pattern2' filename
    2 grep -E 選項可以用來擴充選項為Regex。 如果使用了grep 命令的選項-E,則應該使用 | 來分割多個3 pattern,以此實現OR操作。
    4 egrep 命令等同於‘grep -E’
    AND:
    1 使用 -E 'pattern1.*pattern2'
    2 多個grep
    NOT:
    grep -v 'pattern1' filename
  6. vim顯示行號
    加上 :se number
     關掉用:se nonumber
  7. vim同時顯示多個檔案:
    :split
    :vsplit
  8. 開啟多個 vim file1 file2
    Ctrl+w 切換
  9. taglist 和 WinManager外掛程式
    可顯示當前檔案程式結構和目錄檔案結構
    http://www.vim.org/scripts/script.php?script_id=273
    http://www.vim.org/scripts/script.php?script_id=95
    更多外掛程式配置見 http://blog.csdn.net/wooin/article/details/1858917
  10. 查詢目前使用者下程式佔用的連接埠
    1 lsof -i :連接埠 號 (可能需要安裝軟體包)
    2 netstat -tulpn
  11. 自啟動指令碼
    避免伺服器意外故障時的重啟
    /etc/rc.d/rc.local 裡加入啟動sh 指令碼即可
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.