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
| // requires | |
| var utils = require('utils'); | |
| var casper = require('casper').create() | |
| var casper = require('casper').create({ | |
| verbose: true, | |
| logLevel: "debug" | |
| }); | |
| // setup globals | |
| var email = casper.cli.options['email'] || 'REPLACE THIS EMAIL'; |
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
| #!/bin/bash | |
| # Courtesy of: | |
| # http://stackoverflow.com/questions/134906/how-do-i-list-all-cron-jobs-for-all-users | |
| # System-wide crontab file and cron job directory. Change these for your system. | |
| CRONTAB='/etc/crontab' | |
| CRONDIR='/etc/cron.d' | |
| # Single tab character. Annoyingly necessary. |
NewerOlder