1. 程式人生 > >Linux常用命令列彙總(2)

Linux常用命令列彙總(2)

15、使用gnome-screenshot實現螢幕截圖
使用gnome-screenshot實現延時10秒螢幕截圖。輸入下面命令,然後開啟Applications/Accessories/Text Editor
方法:gnome-screenshot -d 10


16、使用中文輸入法
方法:點選選單System/Preferences/Keyboard Input Methods
顯示:中英文切換
17、檢視文字檔案內容
方法:首先使用gedit(text Editor)建立一個檔案test,然後執行檢視命令cat、more檢視檔案內容
cat test
顯示:test(自己在檔案test中輸入的“test”,cat test命令顯示出test檔案的內容
延時10秒擷取活動視窗
方法:gnome-screenshot -d 10 –w


顯示:使用cat檢視多個檔案內容
方法:cat test test2
顯示:test
hello Linux
使用cat檢視多個檔案內容,顯示行號
方法:cat test test2 –n
顯示:1 test
2 hello linux
使用more諸屏檢視檔案內容
方法:more prg
顯示:more: stat of prg failed: No such file or directory
19、使用less檢視文字檔案內容
首先使用gedit(text Editor)建立一個檔案prg,然後執行檢視命令less檢視檔案內容。使用空格鍵向下翻一頁,使用B鍵向上翻一頁,也可以使用方向鍵上下左右翻頁。輸入/字串,則加亮該字串。按Q鍵退出less程式。
方法:less prg
顯示:hello Linux!
I`m wys!


prg (END)
輸入/字串,則加亮該字串。按Q鍵退出less程式。例如,輸入:


/fp
方法:less –M prg
可以看到檔名、當前頁碼、總的頁碼、當前位置在整個檔案中的位置百分比等檔案資訊。
顯示:hello Linux!
I`m wys!


prg lines 1-3/3 (END)
20、使用grep查詢包含特定字串的檔案內容部分
找出包含“測試” 的行
方法:grep 測試 test test2
顯示:test:測試
test2:測試
找出包含“1 2 3” 的行。待查字串若包含空格,則需加單引號。
方法:grep '1 2 3' test test2
顯示:test:‘1 2 3’
test:‘1 2 3’
test2:‘1 2 3 ’