歡迎光臨
每天分享高質量文章

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

我如何在 Linux、*BSD、macOS 或者類 Unix 系統上臨時禁用或者繞過 bash shell 呢?
— Vivek Gite


致謝
編譯自 | https://www.cyberciti.biz/faq/bash-bypass-alias-command-on-linux-macos-unix/ 
 作者 | Vivek Gite
 譯者 | geekpi ? ? 共計翻譯:662 篇 貢獻時間:1589 天

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

  1. alias mount='mount | column -t'

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

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

4 種繞過 bash 別名的方法

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

  1. alias mount='mount | column -t'

執行如下:

  1. mount

示例輸出:

  1. sysfs                        on  /sys                             type  sysfs            (rw,nosuid,nodev,noexec,relatime)

  2. proc                         on  /proc                            type  proc             (rw,nosuid,nodev,noexec,relatime)

  3. udev                         on  /dev                             type  devtmpfs         (rw,nosuid,relatime,size=8023572k,nr_inodes=2005893,mode=755)

  4. devpts                       on  /dev/pts                         type  devpts           (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)

  5. tmpfs                        on  /run                             type  tmpfs            (rw,nosuid,noexec,relatime,size=1610240k,mode=755)

  6. /dev/mapper/ubuntu--vg-root  on  /                                type  ext4             (rw,relatime,errors=remount-ro,data=ordered)

  7. /dev/sda1                    on  /boot                            type  ext4             (rw,relatime,data=ordered)

  8. binfmt_misc                  on  /proc/sys/fs/binfmt_misc         type  binfmt_misc      (rw,relatime)

  9. lxcfs                        on  /var/lib/lxcfs                   type  fuse.lxcfs       (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)

方法 1 – 使用 \command

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

  1. \mount

方法 2 – 使用 "command" 或 'command'

如下取用 mount 命令呼叫實際的 /bin/mount

  1. "mount"

或者

  1. 'mount'

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

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

  1. /bin/mount

  2. /bin/mount /dev/sda1 /mnt/sda

方法 4 – 使用內部命令 command

語法是:

  1. command cmd

  2. command cmd arg1 arg2

要改寫 .bash_aliases 中設定的別名,例如 mount

  1. command mount

  2. command mount /dev/sdc /mnt/pendrive/

“command” 直接執行命令或顯示[2]關於命令的資訊。它帶引數執行命令會抑制 shell 函式查詢或者別名,或者顯示有關給定命令的資訊。

關於 unalias 命令的說明

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

  1. unalias mount

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

  1. unalias -a

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

  1. vi ~/.bashrc

或者

  1. joe $HOME/.bash_aliases

想瞭解更多資訊,參考這裡[3]的線上手冊,或者輸入下麵的命令檢視:

  1. man bash

  2. help command

  3. help unalias

  4. help alias


via: https://www.cyberciti.biz/faq/bash-bypass-alias-command-on-linux-macos-unix/

作者:Vivek Gite[5] 譯者:geekpi 校對:wxy

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

贊(0)

分享創造快樂