Linux Bash shell 很常使用 alias 來簡化操作指令,但是某些情況想要暫時避開 alias 的話,可以怎麼做呢?
Linux Shell 暫時略過 alias 的作法
想要暫時取消 alias 有幾種作法:
下述使用 alias top='htop' 為例
使用 unalias command
- $ alias top # show: alias top='htop'
- $ unalias top # show: command not found
- $ top # 就是標準 top,不是 htop
使用 \command 來達成 (命令前面加上「\」)
- $ \top # 就會直接使用 top,不是 htop
想要暫時略過 alias 的話,使用 \top 是比較方便~