1 / 8

vi 編輯器

vi 編輯器. 編輯模式. 在一般模式之中,只要按下 i , o, a 等字元就可以進入編輯模式了 ! INSERT: 輸入任意 字元 Esc: 一般模式. 一般模式下的指令. 一般模式切換到指令列模式. pico 編輯器. 開 ( 新 ) 檔案 pico filename 檢視檔案 內容 指令 cat filename -b: 只對非空白行做行列顯示 -n: 對所有的列做行列顯示 head: 顯示檔案內容的前幾 行 head – 行數 filename tail: 顯示檔案內容 的 後 幾行. 檔案搜尋. grep

Download Presentation

vi 編輯器

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. vi編輯器

  2. 編輯模式 • 在一般模式之中,只要按下 i, o, a 等字元就可以進入編輯模式了! • INSERT:輸入任意字元 • Esc:一般模式

  3. 一般模式下的指令

  4. 一般模式切換到指令列模式

  5. pico編輯器 • 開(新)檔案 • pico filename • 檢視檔案內容指令 • cat filename • -b: 只對非空白行做行列顯示 • -n:對所有的列做行列顯示 • head: • 顯示檔案內容的前幾行 • head –行數 filename • tail: • 顯示檔案內容的後幾行

  6. 檔案搜尋 • grep • 在檔案中搜尋某一特定字串 • 參數說明 • -i忽略大小寫 • -n列出行號 • 範例 grep -n“test” test1.txt • find • 某個目錄下開始一層層找檔案 • 語法 find 路徑 –name 檔名 • 範例 find html –name index.htm • (在html 下找尋名叫index.htm的檔案)

  7. 練習題 • 利用pico編輯器,建立一個test.java的檔案,keyin以下的code: • 請利用grep指令找出具有System字串的內容,並印出行號 class test{ public static void main(String[] args){ System.out.println(“我是誰”); Scanner sc = new Scanner(System.in); String name=sc.next(); System.out.println(“Hello Unix Java”+name); } }

  8. 5/3 請帶TQC Linux 題庫本

More Related