mirror of
https://github.com/samsonjs/camel3-bookmarklet.git
synced 2026-03-25 08:45:52 +00:00
6 lines
170 B
JavaScript
Executable file
6 lines
170 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
var fs = require('fs');
|
|
var filename = process.argv[2];
|
|
var code = fs.readFileSync(filename);
|
|
console.log('javascript:' + encodeURIComponent(code));
|