Shell Script doesn't run automatically though it is registered in Mac OS X Login Items - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T10:31:21Zhttp://stackoverflow.com/feeds/question/335891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/335891/shell-script-doesnt-run-automatically-though-it-is-registered-in-mac-os-x-login2Shell Script doesn't run automatically though it is registered in Mac OS X Login Itemsstuartcw2008-12-03T00:19:58Z2008-12-03T13:07:20Z
<p>I have the following shell script registered in my "Login Items" preferences but it does not seem to have any effect. It is meant to launch the moinmoin wiki but only works when it is run by hand from a terminal window, after which it runs until the machine is next shut down.</p>
<pre><code>#!/bin/bash
cd /Users/stuartcw/Documents/Wiki/moin-1.7.2
/usr/bin/python wikiserver.py >> logs/`date +"%d%b%Y"`.log 2>&1 &
</code></pre>
<p>I would really like the Wiki to be available after restarting so any help in understanding this would be appreciated.</p>
http://stackoverflow.com/questions/335891/shell-script-doesnt-run-automatically-though-it-is-registered-in-mac-os-x-login/335906#3359061Answer by Vasil for Shell Script doesn't run automatically though it is registered in Mac OS X Login ItemsVasil2008-12-03T00:25:51Z2008-12-03T00:25:51Z<p>I don't know much about it, since I don't use login items. Just a suggestion, maybe try with applescript that calls those shell commands, and put that in Login Items.</p>
http://stackoverflow.com/questions/335891/shell-script-doesnt-run-automatically-though-it-is-registered-in-mac-os-x-login/335909#3359094Answer by Marc Novakowski for Shell Script doesn't run automatically though it is registered in Mac OS X Login ItemsMarc Novakowski2008-12-03T00:26:49Z2008-12-03T00:26:49Z<p>Try using launchd. More info at <a href="http://www.macgeekery.com/tips/all_about_launchd_items_and_how_to_make_one_yourself" rel="nofollow">http://www.macgeekery.com/tips/all_about_launchd_items_and_how_to_make_one_yourself</a></p>
http://stackoverflow.com/questions/335891/shell-script-doesnt-run-automatically-though-it-is-registered-in-mac-os-x-login/335922#3359223Answer by Jay for Shell Script doesn't run automatically though it is registered in Mac OS X Login ItemsJay2008-12-03T00:36:56Z2008-12-03T00:36:56Z<p>Some helpful links:</p>
<p><a href="http://support.apple.com/kb/HT2420" rel="nofollow">Mac OS X: Creating a login hook</a></p>
<p><a href="http://www.informit.com/library/content.aspx?b=Mac_OS_X_Unleashed&seqNum=153" rel="nofollow"> Making Shell Scripts Start at Login or System Startup</a></p>
<p>See also <a href="http://tuppis.com/lingon/" rel="nofollow">Lingon</a> for a front end, should you decide to use Launchd instead.</p>
http://stackoverflow.com/questions/335891/shell-script-doesnt-run-automatically-though-it-is-registered-in-mac-os-x-login/336239#3362391Answer by Dustin for Shell Script doesn't run automatically though it is registered in Mac OS X Login ItemsDustin2008-12-03T04:46:19Z2008-12-03T04:46:19Z<p>launchd is one of the best parts of MacOS X, and it causes me great pain to not be able to find it on other systems.</p>
<p>Edit and place this in <code>/Library/LaunchDaemons</code> as <code>com.you.wiki.plist</code></p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.you.wiki</string>
<key>LowPriorityIO</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
<key>Nice</key>
<integer>1</integer>
<key>WorkingDirectory</key>
<string>/Users/stuartcw/Documents/Wiki/moin-1.7.2</string>
<key>UserName</key>
<string>user to run this as</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/python</string>
<string>wikiserver.py</string>
</array>
</dict>
</plist>
</code></pre>