I know I once know how to do this but... how do you run a script (bash is OK) on login in unix?
|
|
From wikipedia Bash
|
||||
|
|
|
When using Bash, the first of I typically put everything I want to always set in |
|||
|
|
|
If you are on OSX, then it's ~/.profile |
|||||
|
|
|
If you wish to run one script and only one script, you can make it that users default shell.
can have interesting effects :) ( its not secure tho, so don't trust it too much. nothing like setting your default shell to be a script that wipes your drive. ... although, .. I can imagine a scenario where that could be amazingly useful ) |
|||
|
|
|
At login, most shells execute a login script, which you can use to execute your custom script. The login script the shell executes depends, of course, upon the shell:
You can probably find out what shell you're using by doing
from the prompt. |
|||
|
|
Launchd is a the prefered way in os X. If you want it to run on your login put it in ~/Library/LaunchAgents Start launchd item launchctl load /Library/LaunchDaemons/com.bob.plist Stop item launchctl unload /Library/LaunchDaemons/com.bob.plist Example com.bob.plist
|
||||
|
|
|
Place it in your bash profile: ~/.bash_profile |
|||
|
|
|
Add an entry in |
||||
|
|
|
Search your local system's bash man page for ^INVOCATION for information on which file is going to be read at startup.
Also in the FILES section,
Add your script to the proper file. Make sure the script is in the $PATH, or use the absolute path to the script file. |
|||
|
|