主頁 > 知識庫 > lixux系統(tǒng)中bash命令下一些操作技巧 學(xué)會后可事半功倍

lixux系統(tǒng)中bash命令下一些操作技巧 學(xué)會后可事半功倍

熱門標(biāo)簽:宿松百度地圖標(biāo)注 滁州外呼系統(tǒng)接口對接 營業(yè)廳外呼系統(tǒng)有錄音嗎 信陽智能外呼系統(tǒng)聯(lián)系方式 地圖標(biāo)注和視頻彩鈴制作生意 合力億捷外呼系統(tǒng)如何解壓安裝 南京電銷外呼系統(tǒng)廠家 南通電銷外呼系統(tǒng)排名 地圖標(biāo)注怎么兼職

  tab鍵補(bǔ)全用法

  當(dāng)我們敲擊一下tab補(bǔ)全命令或文件名

  當(dāng)我們敲擊兩下tab 列出相關(guān)的所有可選項

  cd -   相當(dāng)于電視的回看

  有時候我們進(jìn)入一個非常長的目錄,后來又進(jìn)入另一個目錄,可能我們還行回到原來那個長,如果事先知道,我們可能輸入pwd ,以便一會兒粘貼,有時候忘了輸入pwd我們可能無奈還得輸入一次長長的路徑,我們可以輸入一下cd -試試,直接回到上次進(jìn)入的目錄,就像是看電視時候的回看按鈕。是不是很好用?

  查看以下例子

  [root@localhost /]# cd /tmp

  [root@localhost tmp]# pwd

  /tmp

  [root@localhost tmp]# cd /

  [root@localhost /]# pwd

  /

  [root@localhost /]# cd -

  /tmp

  [root@localhost tmp]# pwd

  /tmp

  Esc+.

  用法舉例

  首先touch一個文件,然后編輯這個文件

  touch abcdefghijk

  敲入vi ,然后Esc+. 發(fā)現(xiàn)是不是abcdefghijk已經(jīng)出現(xiàn)在vi后面\&; 

   轉(zhuǎn)義字符用法

  系統(tǒng)中一些命令都是別名的功能,比如我們使用的rm、mv等,實際上是 rm -i和mv -i 。

  查看系統(tǒng)別名可以使用alias命令,例如以下系統(tǒng)默認(rèn)的別名。

  [root@localhost testdir]# alias

  alias cp='cp -i'

  alias egrep='egrep --color=auto'

  alias fgrep='fgrep --color=auto'

  alias grep='grep --color=auto'

  alias l.='ls -d .* --color=auto'

  alias ll='ls -l --color=auto'

  alias ls='ls --color=auto'

  alias mv='mv -i'

  alias rm='rm -i'

  alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

  有時候我們刪一個文件時候,會出現(xiàn)以下提示,  需要我們一個個確認(rèn),原因就是rm默認(rèn)就是rm -i起了作用。

  [root@localhost testdir]# cd dir1

  [root@localhost dir1]# ls

  file1  file2  file3  file4

  [root@localhost dir1]# rm file1 file2 file3 file4rm: remove regular empty file ?.ile1?. y

  rm: remove regular empty file ?.ile2?. y

  rm: remove regular empty file ?.ile3?. y

  rm: remove regular empty file ?.ile4?. y

  我們可以使用轉(zhuǎn)移字符使別名失效,使用如下,刪除就不會再有提示確認(rèn)了。

  [root@localhost testdir]# cd dir1

  [root@localhost dir1]# ls

  file1  file2  file3  file4

  [root@localhost dir1]# \rm file1 file2 file3 file4

標(biāo)簽:山南 新余 保定 銅陵 潛江 運(yùn)城 麗水 衢州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《lixux系統(tǒng)中bash命令下一些操作技巧 學(xué)會后可事半功倍》,本文關(guān)鍵詞  lixux,系統(tǒng),中,bash,命令,下,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《lixux系統(tǒng)中bash命令下一些操作技巧 學(xué)會后可事半功倍》相關(guān)的同類信息!
  • 本頁收集關(guān)于lixux系統(tǒng)中bash命令下一些操作技巧 學(xué)會后可事半功倍的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章