Changes between Version 4 and Version 5 of cypress/WorkingOnClusters


Ignore:
Timestamp:
08/19/19 12:30:31 (5 years ago)
Author:
cbaribault
Comment:

Corrected explanation in section "bash_profile and bashrc" by acknowledging the different directories referenced, /etc vs ~.

Legend:

Unmodified
Added
Removed
Modified
  • cypress/WorkingOnClusters

    v4 v5  
    141141}}}
    142142
    143 You can see that the two are nearly identical. The only difference being that our .bash_profile modifies the PATH environment variable.
     143You can see that the two are nearly identical. Aside from their reference to different directories (/etc vs ~), the only other difference is that our .bash_profile modifies and exports the PATH environment variable.
    144144
    145145There is much confusion over the role that each of these files play. When you login to a system, the .bash_profile file is executed UPON LOGIN. The .bashrc file modifies the default environment when connected without login, for example when executing commands remotely using SSH. Note that changes made in the .bashrc file will be reflected in the .bash_profile file but not vise versa.