-
-
Notifications
You must be signed in to change notification settings - Fork 682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove-echo #612
remove-echo #612
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -15,8 +15,8 @@ source "$HOME/.bashrc" | |||||
set | grep -aE "^OSH" | ||||||
|
||||||
if [[ "$OSH_THEME" == "font" ]]; then | ||||||
echo "Installation succeeded" | ||||||
printf -- "Installation succeeded" | ||||||
else | ||||||
echo "Installation failed, \$OSH_THEME is not set to 'font'" | ||||||
printf -- "Installation failed, \$OSH_THEME is not set to 'font'" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Newline is missing. |
||||||
exit 1 | ||||||
fi |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,9 +66,9 @@ alias ll='ls -lAFh' # Preferred 'ls' implementation | |
alias less='less -FSRXc' # Preferred 'less' implementation | ||
alias wget='wget -c' # Preferred 'wget' implementation (resume download) | ||
alias c='clear' # c: Clear terminal display | ||
alias path='echo -e ${PATH//:/\\n}' # path: Echo all executable Paths | ||
alias path='printf -- ${PATH//:/\\n}' # path: Echo all executable Paths | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't cover the case where PATH contains |
||
alias show_options='shopt' # Show_options: display bash options settings | ||
alias fix_stty='stty sane' # fix_stty: Restore terminal settings when screwed up | ||
alias fix_term='echo -e "\033c"' # fix_term: Reset the conosle. Similar to the reset command | ||
alias fix_term='printf "\033c"' # fix_term: Reset the conosle. Similar to the reset command | ||
alias cic='bind "set completion-ignore-case on"' # cic: Make tab-completion case-insensitive | ||
alias src='source ~/.bashrc' # src: Reload .bashrc file |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The files under |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file is also taken from the upstream. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is also taken from the upstream project. Please don't change this file. This is the third time I have written "do not change svn.completion.sh"... |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file is also taken from the upstream. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Newline is missing