Tagged Questions
1
vote
1answer
77 views
Run script on networked user login
The computer lab is running 10.8. I would like to run a script when networked users login. As far as I can tell my choices are:
launchd agents - Not meant for this. On the launchd.plist man page it ...
4
votes
2answers
163 views
How can I have my shell always start in a certain directory that is not my home directory
I've tried putting
cd /Users/my_name/my_directory/structure
in both .bashrc and .bash_login but neither works, i.e. when I open a new terminal window I am in my home (/Users/my_name/) directory.
...
0
votes
1answer
450 views
How can I start postgres automatically on startup?
I can start postgres with:
# Start Postgres
/usr/local/bin/pg_ctl -D /usr/local/pgsql/data -l logfile start
Where can I put that to start up when I start the machine up?
I can put it in my ...