標籤:

4 種繞過 Linux/Unix 命令別名的方法

我在我的 Linux 系統上定義了如下 mount 別名:

alias mount=mount | column -t

但是我需要在掛載文件系統和其他用途時繞過這個 bash 別名。我如何在 Linux、*BSD、macOS 或者類 Unix 系統上臨時禁用或者繞過 bash shell 呢?

你可以使用 alias 命令定義或顯示 bash shell 別名。一旦創建了 bash shell 別名,它們將優先於外部或內部命令。本文將展示如何暫時繞過 bash 別名,以便你可以運行實際的內部或外部命令。

4 種繞過 bash 別名的方法

嘗試以下任意一種方法來運行被 bash shell 別名繞過的命令。讓我們如下定義一個別名:

alias mount=mount | column -t

運行如下:

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)

方法 1 - 使用 command

輸入以下命令暫時繞過名為 mount 的 bash 別名:

mount

方法 2 - 使用 "command" command

如下引用 mount 命令調用實際的 /bin/mount

"mount"

或者

mount

方法 3 - 使用命令的完全路徑

使用完整的二進位路徑,如 /bin/mount

/bin/mount/bin/mount /dev/sda1 /mnt/sda

方法 4 - 使用內部命令 command

語法是:

command cmdcommand cmd arg1 arg2

要覆蓋 .bash_aliases 中設置的別名,例如 mount

command mountcommand mount /dev/sdc /mnt/pendrive/

「command」 直接運行命令或顯示關於命令的信息。它帶參數運行命令會抑制 shell 函數查詢或者別名,或者顯示有關給定命令的信息。

關於 unalias 命令的說明

要從當前會話的已定義別名列表中移除別名,請使用 unalias 命令:

unalias mount

要從當前 bash 會話中刪除所有別名定義:

unalias -a

確保你更新你的 ~/.bashrc$HOME/.bash_aliases。如果要永久刪除定義的別名,則必須刪除定義的別名:

vi ~/.bashrc

或者

joe $HOME/.bash_aliases

想了解更多信息,參考這裡的在線手冊,或者輸入下面的命令查看:

man bashhelp commandhelp unaliashelp alias


via: cyberciti.biz/faq/bash-

作者:Vivek Gite 譯者:geekpi 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出

推薦閱讀:

TAG:Bash | 別名 |