#!/usr/bin/env php \n"; if ($argc < 3) { fwrite(STDERR, $usage); exit(1); } $file_url = 'file://' . realpath($argv[1]); $host = $argv[2]; $tweeper = new Tweeper(); $output = $tweeper->tweep($file_url, $host, false); if (is_null($output)) { exit(1); } echo $output;