View Single Post
Quote:
Originally Posted by kingsinger View Post
If I wanted to see the same info from the Due Script in a text file instead in a geektool gadget thing, what would I need to do?
You can run it as a shell script. Googling "OS X" run shell script will take you to various options but a traditional approach might be to save the script as a text file with the extension .sh and then make it executable with the chmod command in Terminal.app

If you save it in your user directory as ofdue.sh you could make it executable and test it with sth like:
  • chmod u+x ofdue.sh
  • $HOME/ofdue.sh

Then, to generate and inspect a text file containing the output:
  • $HOME/ofdue.sh > results.txt
  • cat results.txt