Advertisement
n8henrie

Run Pinboard Backup with Launchd

Dec 29th, 2012
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.63 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <!-- Original post at http://n8henrie.com/2012/12/pinboard-backups-with-curl-and-launchd/ -->
  5. <dict>
  6.     <key>Label</key>
  7.     <string>com.n8henrie.pinboardBackup</string>
  8.     <key>ProgramArguments</key>
  9.     <array>
  10. <string>/Users/[username]/Dropbox/[pathToScript]/pinboardBackup.sh</string>
  11.     </array>
  12.     <key>StartCalendarInterval</key>
  13.     <dict>
  14.       <key>Hour</key>
  15.       <integer>03</integer>
  16.       <key>Minute</key>
  17.       <integer>00</integer>
  18.     </dict>
  19. </dict>
  20. </plist>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement