The alias command in Unix/Linux systems is used to create shortcuts for longer or frequently used commands. It allows you to define a custom name (or abbreviation) for a command or a series of commands, making them easier and faster to execute.
alias name='command'
ex :- alias ll='ls -alF'
Top comments (0)