LoginSignup
16
11

More than 5 years have passed since last update.

コマンドに割り当てられたaliasを確認する

Posted at

aliasを多用するのですが、設定した内容をいつも忘れてしまうので確認の仕方をメモしておきます。

$ alias ls
alias ls='ls -Gal'

aliasを一時的に無効にしたいときはunaliasコマンドを使います。

$ unalias ls
$ alias ls
-bash: alias: ls: not found
16
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
11