tikiwiki/packages/tiki-pkg-casperjs/jakoch/phantomjs/examples/arguments.js
2023-11-20 20:52:04 +00:00

11 lines
267 B
JavaScript
Executable File

"use strict";
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();