技術員聯(lián)盟提供win764位系統(tǒng)下載,win10,win7,xp,裝機純凈版,64位旗艦版,綠色軟件,免費軟件下載基地!

當前位置:主頁 > 教程 > 服務器類 >

linux系統(tǒng)常用命令有哪些?

來源:技術員聯(lián)盟┆發(fā)布時間:2018-02-20 06:00┆點擊:

  這里介紹幾個Linux的常用命令

  當在同一行的2個命令使用semicolon也就是分號;分隔時,表示第一個command將在后一個command開始時完成,例如

  ls -F /etc;ls -F /home

30.jpg

  Linux有命令行自動補齊功能,輸入命令行的前面幾個字符可以連續(xù)按下2次tab鍵或者Esc鍵給出提示,如果只有以首字母開始的唯一一個命令,則系統(tǒng)會自動補齊,例如輸入dm,按下2次tab鍵或者2次Esc鍵,效果如下

31.jpg

  默認的Linux命令行使用的是emacs編輯器,有很多功能

  ctrl+b move back one character

32.jpg

  在命令行編輯時光標cursor的back和forward

  ctrl+f=move forward one character

  del=delete the character to the left of the cursor

33.jpg

  ctrl+a=move to the start of the line

  ctrl+e=move to the end of the line

  esc+f=move forward a word

  esc+b=move backward a word

  ctrl+l=clear the screen,reprinting the current line at the top

  按下control加小寫的L將清除屏幕,并把當前行移動到屏幕的top

34.jpg