5 lines
90 B
Bash
5 lines
90 B
Bash
# change current directory to its parent
|
|
alias ..='cd ..'
|
|
|
|
# exit terminal
|
|
alias x='exit'
|