Entry
Linux: Alias: Operation: View: All: How to see all currently defined aliases? [alias]
Sep 19th, 2003 08:44
Knud van Eeden,
----------------------------------------------------------------------
--- Knud van Eeden --- 19 September 2003 - 04:02 pm ------------------
Linux: Alias: Operation: View: All: How to see all currently defined
aliases? [alias]
---
On the command line type:
alias
---
In Linux Red Hat v9.0 this will by default show e.g.:
alias cp='cp -i'
alias l.='ls -d .* --color=tty'
alias ll='ls -l --color=tty'
alias ls='ls --color=tty'
alias mv='mv -i'
alias rm='rm -i'
alias vi='vim'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-
dot --show-tilde'
---
---
for more information type:
man alias
----------------------------------------------------------------------