mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
b73ec44796
Also update coffee-script script path names in usage messages. http://code.google.com/p/phantomjs/issues/detail?id=276
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
var system = require('system');
|
|
if (system.args.length === 1) {
|
|
console.log('Try to pass some args when invoking this script!');
|
|
} else {
|
|
system.args.forEach(function (arg, i) {
|
|
console.log(i + ': ' + arg);
|
|
});
|
|
}
|
|
phantom.exit();
|