Shell Script doesn't run automatically though it is registered in Mac OS X Login Items - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:31:21Z http://stackoverflow.com/feeds/question/335891 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/335891/shell-script-doesnt-run-automatically-though-it-is-registered-in-mac-os-x-login 2 Shell Script doesn't run automatically though it is registered in Mac OS X Login Items stuartcw 2008-12-03T00:19:58Z 2008-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 &gt;&gt; logs/`date +"%d%b%Y"`.log 2&gt;&amp;1 &amp; </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#335906 1 Answer by Vasil for Shell Script doesn't run automatically though it is registered in Mac OS X Login Items Vasil 2008-12-03T00:25:51Z 2008-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#335909 4 Answer by Marc Novakowski for Shell Script doesn't run automatically though it is registered in Mac OS X Login Items Marc Novakowski 2008-12-03T00:26:49Z 2008-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#335922 3 Answer by Jay for Shell Script doesn't run automatically though it is registered in Mac OS X Login Items Jay 2008-12-03T00:36:56Z 2008-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&amp;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#336239 1 Answer by Dustin for Shell Script doesn't run automatically though it is registered in Mac OS X Login Items Dustin 2008-12-03T04:46:19Z 2008-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>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt; &lt;plist version="1.0"&gt; &lt;dict&gt; &lt;key&gt;Label&lt;/key&gt; &lt;string&gt;com.you.wiki&lt;/string&gt; &lt;key&gt;LowPriorityIO&lt;/key&gt; &lt;true/&gt; &lt;key&gt;KeepAlive&lt;/key&gt; &lt;true/&gt; &lt;key&gt;RunAtLoad&lt;/key&gt; &lt;true/&gt; &lt;key&gt;Nice&lt;/key&gt; &lt;integer&gt;1&lt;/integer&gt; &lt;key&gt;WorkingDirectory&lt;/key&gt; &lt;string&gt;/Users/stuartcw/Documents/Wiki/moin-1.7.2&lt;/string&gt; &lt;key&gt;UserName&lt;/key&gt; &lt;string&gt;user to run this as&lt;/string&gt; &lt;key&gt;ProgramArguments&lt;/key&gt; &lt;array&gt; &lt;string&gt;/usr/bin/python&lt;/string&gt; &lt;string&gt;wikiserver.py&lt;/string&gt; &lt;/array&gt; &lt;/dict&gt; &lt;/plist&gt; </code></pre>