Creating an alias in unix systems


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #in the unix command line
  2. user@host:/# ll
  3. -bash: ll: command not found
  4. user@host:/# alias ll='ls -l'
  5. user@host:/# ll
  6. total 4
  7. drwxr-xr-x 9 isholgueras isholgueras 4096 2010-08-09 14:22 netbeans-6.9.1

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.