mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 01:41:54 +02:00
7 lines
167 B
JavaScript
Executable file
7 lines
167 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
var rw = require("../").dash;
|
|
|
|
rw.writeFile(process.argv[2] || "-", "gréén\n", process.argv[3], function(error) {
|
|
if (error) throw error;
|
|
});
|