shell - Order of execution of .cshrc and .login -


after extensive research, read on login, login shell executes .cshrc , .login files in home directory. order of execution depends on shell programme. how find correct order of execution of above scripts machine? running shell on aix machine

quoting what "dot" files various shells use?:

  csh       versions have system-wide .cshrc , .login files.  every       version puts them in different places.        start-up (in order):           .cshrc   - always; unless -f option used.           .login   - login shells. 

(additionally, .login executed 1 during session. .cshrc executed upon starting instance of shell.)


Comments

Popular posts from this blog

php - Add the correct number of days for each month -

java.util.scanner - How to read and add only numbers to array from a text file -