cat-async 244 Bytes
Newer Older
YazhouChen's avatar
YazhouChen committed
1 2 3 4 5 6 7 8 9 10
#!/usr/bin/env node

var rw = require("../").dash;

rw.readFile(process.argv[2] || "-", "utf8", function(error, contents) {
  if (error) throw error;
  rw.writeFile("-", contents, "utf8", function(error) {
    if (error) throw error;
  });
});