diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-22 16:31:13 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-22 16:31:13 -0700 |
commit | 1951246d67dfe41f2dfa722d1487baedf74c3081 (patch) | |
tree | f253ab27bc6e5d0a3cd5d7ad1e20691944d003ba | |
parent | 8525165dc90954fcad32d44cbee4ef811eb2aece (diff) |
synctwitterfriends.php uses commandline.inc
-rwxr-xr-x | scripts/synctwitterfriends.php | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/scripts/synctwitterfriends.php b/scripts/synctwitterfriends.php index 7f418894e..fe53ff44d 100755 --- a/scripts/synctwitterfriends.php +++ b/scripts/synctwitterfriends.php @@ -18,24 +18,16 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -// Abort if called from a web server -if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { - print "This script must be run from the command line\n"; - exit(); -} - define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); -define('LACONICA', true); // Uncomment this to get useful console output -//define('SCRIPT_DEBUG', true); -// Preset the server at the command line +$helptext = <<<END_OF_TWITTER_HELP +Batch script for synching local friends with Twitter friends. -$server = ($argc > 1) ? $argv[1] : null; -$path = ($argc > 2) ? $argv[2] : null; +END_OF_TWITTER_HELP; -require_once(INSTALLDIR . '/lib/common.php'); +require_once INSTALLDIR.'/scripts/commandline.inc'; // Make a lockfile $lockfilename = lockFilename(); |