這篇文章將為大家詳細(xì)講解有關(guān)bash命令怎么在linux系統(tǒng)中使用,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

Linux是一種免費(fèi)使用和自由傳播的類UNIX操作系統(tǒng),是一個(gè)基于POSIX的多用戶、多任務(wù)、支持多線程和多CPU的操作系統(tǒng),使用Linux能運(yùn)行主要的Unix工具軟件、應(yīng)用程序和網(wǎng)絡(luò)協(xié)議。
tab鍵補(bǔ)全用法
當(dāng)我們敲擊一下tab補(bǔ)全命令或文件名
當(dāng)我們敲擊兩下tab 列出相關(guān)的所有可選項(xiàng)
查看以下例子
[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一個(gè)文件,然后編輯這個(gè)文件
touch abcdefghijk
敲入vi ,然后Esc+. 發(fā)現(xiàn)是不是abcdefghijk已經(jīng)出現(xiàn)在vi后面\
轉(zhuǎn)義字符用法
系統(tǒng)中一些命令都是別名的功能,比如我們使用的rm、mv等,實(shí)際上是 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'
有時(shí)候我們刪一個(gè)文件時(shí)候,會(huì)出現(xiàn)以下提示, 需要我們一個(gè)個(gè)確認(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)移字符使別名失效,使用如下,刪除就不會(huì)再有提示確認(rèn)了。
[root@localhost testdir]# cd dir1
[root@localhost dir1]# ls
file1 file2 file3 file4
[root@localhost dir1]# \rm file1 file2 file3 file4
關(guān)于bash命令怎么在linux系統(tǒng)中使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
網(wǎng)頁(yè)名稱:bash命令怎么在linux系統(tǒng)中使用-創(chuàng)新互聯(lián)
地址分享:http://www.chinadenli.net/article8/dccdop.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開(kāi)發(fā)、云服務(wù)器、定制開(kāi)發(fā)、域名注冊(cè)、微信小程序、網(wǎng)站改版
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容