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

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -