mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 11:32:30 -06:00
8 lines
178 B
JavaScript
Executable file
8 lines
178 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
var rw = require("../").dash;
|
|
|
|
rw.readFile(process.argv[2] || "-", function(error, contents) {
|
|
if (error) throw error;
|
|
console.log(contents.length);
|
|
});
|