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