diff --git a/aliases/available/general.aliases.bash b/aliases/available/general.aliases.bash index 1260b1c343..f8b8490e8c 100644 --- a/aliases/available/general.aliases.bash +++ b/aliases/available/general.aliases.bash @@ -20,7 +20,6 @@ alias _='sudo' alias vbrc='${VISUAL:-vim} ~/.bashrc' alias vbpf='${VISUAL:-vim} ~/.bash_profile' - # colored grep # Need to check an existing file for a pattern that will be found to ensure # that the check works when on an OS that supports the color option @@ -51,11 +50,11 @@ alias ipy='ipython' alias piano='pianobar' -alias ..='cd ..' # Go up one directory -alias cd..='cd ..' # Common misspelling for going up one directory -alias ...='cd ../..' # Go up two directories -alias ....='cd ../../..' # Go up three directories -alias -- -='cd -' # Go back +alias ..='cd ..' # Go up one directory +alias cd..='cd ..' # Common misspelling for going up one directory +alias ...='cd ../..' # Go up two directories +alias ....='cd ../../..' # Go up three directories +alias -- -='cd -' # Go back alias dow='cd /home/$USER/Downloads' # Go to the Downloads directory # Shell History diff --git a/completion/available/gradle.completion.bash b/completion/available/gradle.completion.bash index 9b9072c17d..e78a604036 100644 --- a/completion/available/gradle.completion.bash +++ b/completion/available/gradle.completion.bash @@ -48,7 +48,7 @@ __gradle-set-build-file() { __gradle-set-cache-name() { # Cache name is constructed from the absolute path of the build file. - cache_name=${gradle_build_file//'/'/_} + cache_name=${gradle_build_file//"/"/_} } __gradle-set-files-checksum() {