64b8cf5e5b0b2396fe48b77cdabe349052e1450b
faq-using-sbgrid-programs.md
... | ... | @@ -52,20 +52,20 @@ appropriate lines to your shell configuration. Run echo $SHELL in a terminal |
52 | 52 | to determine which file you should edit. |
53 | 53 | |
54 | 54 | For tcsh, edit your ~/.cshrc file to contain: |
55 | - |
|
55 | +``` |
|
56 | 56 | if ( -e /programs/sbgrid.cshrc ) then |
57 | 57 | source /programs/sbgrid.cshrc |
58 | 58 | endif |
59 | - |
|
59 | +``` |
|
60 | 60 | For bash,** **edit your ~/.bashrc file to contain: |
61 | - |
|
61 | +``` |
|
62 | 62 | if [ -f /programs/sbgrid.shrc ]; then |
63 | 63 | . /programs/sbgrid.shrc |
64 | 64 | fi |
65 | - |
|
65 | +``` |
|
66 | 66 | You may also need to create a .bash_profile with the following contents: |
67 | - |
|
67 | +``` |
|
68 | 68 | if [ -f $HOME/.bashrc ]; then |
69 | 69 | . $HOME/.bashrc |
70 | 70 | fi |
71 | - |
|
71 | +``` |