您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關bash命令怎么在linux系統(tǒng)中使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
Linux是一種免費使用和自由傳播的類UNIX操作系統(tǒng),是一個基于POSIX的多用戶、多任務、支持多線程和多CPU的操作系統(tǒng),使用Linux能運行主要的Unix工具軟件、應用程序和網絡協(xié)議。
tab鍵補全用法
當我們敲擊一下tab補全命令或文件名
當我們敲擊兩下tab 列出相關的所有可選項
查看以下例子
[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已經出現(xiàn)在vi后面\
轉義字符用法
系統(tǒng)中一些命令都是別名的功能,比如我們使用的rm、mv等,實際上是 rm -i和mv -i 。
查看系統(tǒng)別名可以使用alias命令,例如以下系統(tǒng)默認的別名。
[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)以下提示, 需要我們一個個確認,原因就是rm默認就是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
我們可以使用轉移字符使別名失效,使用如下,刪除就不會再有提示確認了。
[root@localhost testdir]# cd dir1
[root@localhost dir1]# ls
file1 file2 file3 file4
[root@localhost dir1]# \rm file1 file2 file3 file4
關于bash命令怎么在linux系統(tǒng)中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。