1var system = require('system'); 2if (system.args.length === 1) { 3 console.log('Try to pass some args when invoking this script!'); 4} else { 5 system.args.forEach(function (arg, i) { 6 console.log(i + ': ' + arg); 7 }); 8} 9phantom.exit(); 10 11