Video may be blocked due to browser extensions. In the article you will find a solution to this problem.
Lesson notes
alias
to view all aliasesalias name='command'
to create a new alias namedname
for the commandcommand
(e.g.alias lss='ls | sort -r'
)unalias name
to unalias an alias namedname
Some useful aliases
alias c='clear'
— clears the screen withc
alias ..='cd ..'
- quickly go one level up with..
alias h='history'
— quickly access history withh
Are there any more questions? Ask them in the Discussion section.
The Hexlet support team or other students will answer you.