Skip to content

Commit e829b51

Browse files
author
Ira Abramov
committed
general aliases: pointing at /home/$USER is a wild assumption, corrected to $HOME
1 parent 366eb3a commit e829b51

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

aliases/available/general.aliases.bash

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ alias ipy='ipython'
5050

5151
alias piano='pianobar'
5252

53-
alias ..='cd ..' # Go up one directory
54-
alias cd..='cd ..' # Common misspelling for going up one directory
55-
alias ...='cd ../..' # Go up two directories
56-
alias ....='cd ../../..' # Go up three directories
57-
alias -- -='cd -' # Go back
58-
alias dow='cd /home/$USER/Downloads' # Go to the Downloads directory
53+
alias ..='cd ..' # Go up one directory
54+
alias cd..='cd ..' # Common misspelling for going up one directory
55+
alias ...='cd ../..' # Go up two directories
56+
alias ....='cd ../../..' # Go up three directories
57+
alias -- -='cd -' # Go back
58+
alias dow='cd $HOME/Downloads' # Go to the Downloads directory
5959

6060
# Shell History
6161
alias h='history'

0 commit comments

Comments
 (0)