您好,登錄后才能下訂單哦!
這篇文章主要介紹繞過Linux/Unix命令別名的方法有哪些,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
我在我的 Linux 系統(tǒng)上定義了如下 mount
別名:
alias mount='mount | column -t'
但是我需要在掛載文件系統(tǒng)和其他用途時(shí)繞過這個(gè) bash 別名。我如何在 Linux、*BSD、macOS 或者類 Unix 系統(tǒng)上臨時(shí)禁用或者繞過 bash shell 呢?
你可以使用 alias
命令定義或顯示 bash shell 別名。一旦創(chuàng)建了 bash shell 別名,它們將優(yōu)先于外部或內(nèi)部命令。本文將展示如何暫時(shí)繞過 bash 別名,以便你可以運(yùn)行實(shí)際的內(nèi)部或外部命令。
嘗試以下任意一種方法來運(yùn)行被 bash shell 別名繞過的命令。讓我們?nèi)缦露x一個(gè)別名:
alias mount='mount | column -t'
運(yùn)行如下:
mount
示例輸出:
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)udev on /dev type devtmpfs (rw,nosuid,relatime,size=8023572k,nr_inodes=2005893,mode=755)devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=1610240k,mode=755)/dev/mapper/ubuntu--vg-root on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)/dev/sda1 on /boot type ext4 (rw,relatime,data=ordered)binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime)lxcfs on /var/lib/lxcfs type fuse.lxcfs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
\command
輸入以下命令暫時(shí)繞過名為 mount
的 bash 別名:
\mount
"command"
或 'command'
如下引用 mount
命令調(diào)用實(shí)際的 /bin/mount
:
"mount"
或者
'mount'
使用完整的二進(jìn)制路徑,如 /bin/mount
:
/bin/mount/bin/mount /dev/sda1 /mnt/sda
command
語法是:
command cmdcommand cmd arg1 arg2
要覆蓋 .bash_aliases
中設(shè)置的別名,例如 mount
:
command mountcommand mount /dev/sdc /mnt/pendrive/
“command” 直接運(yùn)行命令或顯示關(guān)于命令的信息。它帶參數(shù)運(yùn)行命令會(huì)抑制 shell 函數(shù)查詢或者別名,或者顯示有關(guān)給定命令的信息。
要從當(dāng)前會(huì)話的已定義別名列表中移除別名,請使用 unalias
命令:
unalias mount
要從當(dāng)前 bash 會(huì)話中刪除所有別名定義:
unalias -a
確保你更新你的 ~/.bashrc
或 $HOME/.bash_aliases
。如果要***刪除定義的別名,則必須刪除定義的別名:
vi ~/.bashrc
或者
joe $HOME/.bash_aliases
想了解更多信息,輸入下面的命令查看:
man bashhelp commandhelp unaliashelp alias
以上是“繞過Linux/Unix命令別名的方法有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。