- www.llnl.gov; democracygps.org
- in/chris-krenn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This script saves all open and modified Excel, Word, and PowerPoint documents | |
// It can be run manually with "osascript -l JavaScript /path/to/your/saved/script.js" | |
// or scheduled to run periodically using a tool like cron. | |
// type `crontab -e` to edit the cron jobs | |
// crontab: */5 * * * * /usr/bin/osascript -l JavaScript /path/to/your/saved/script.js | |
function run() { | |
try { | |
console.log("Script started"); |
OlderNewer