Run shell script after login

I'm using: #! /bin/sh
however, i'm still working on the syntax of how to insert it into the .login
That won't work because .login is only used by csh, as is mentioned in the file itself by default. If you're using sh you'd be better off focusing on .profile.
 
Back
Top