This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -bash: /etc/bashrc: line 3: syntax error near unexpected token `fi' | |
| -bash: /etc/bashrc: line 3: `fi' | |
| -bash-3.2$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # System-wide .bashrc file for interactive bash(1) shells. | |
| if [ -z "$PS1" ]; then | |
| fi | |
| PS1='\h:\W \u\$ ' | |
| # Make bash check its window size after a process completes | |
| shopt -s checkwinsize | |
| [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session. |