Alias - Create Command Shortcuts | Online Free DevTools by Hexmos
Create command shortcuts with Alias. Define custom aliases for frequently used commands to improve efficiency. Free online tool, no registration required.
alias
Create aliases - words that are replaced by a command string. Aliases expire with the current shell session unless defined in the shell’s configuration file, e.g.
~/.bashrcfor Bash or~/.zshrcfor Zsh. See also:unalias. More information: https://www.gnu.org/software/bash/manual/bash.html#index-alias.
- List all aliases:
alias
- Create a generic alias:
alias {{word}}="{{command}}"
- View the command associated to a given alias:
alias {{word}}
- Remove an aliased command:
unalias {{word}}
- Turn
rminto an interactive command:
alias {{rm}}="{{rm --interactive}}"
- Create
laas a shortcut forls --all:
alias {{la}}="{{ls --all}}"