MTI TEK
  • Home
  • LLMs
  • Docker
  • Kubernetes
  • Java
  • All Tutorials
Linux-Ubuntu | Linux aliases
  1. Notes
  2. Examples

  1. Notes
    alias ALIAS_NAME='COMMAND'
    
    unalias ALIAS_NAME
    If you define an alias using the same name as an existing command name, you can run that command unaliased if you precede its name with a backslash.
    $ alias ls='ls -l'
    $ \ls
  2. Examples
    • Create an alias.
      $ alias list='ls -l'
    • Remove an alias.
      $ unalias list
    • List all aliases.
      $ alias
© 2025 mtitek
About