faqts : Computers : Operating Systems : Linux

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

29 of 34 people (85%) answered Yes
Recently 8 of 10 people (80%) answered Yes

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

----------------------------------------------------------------------