Node-Red configuration
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

cat-async 244B

12345678910
  1. #!/usr/bin/env node
  2. var rw = require("../").dash;
  3. rw.readFile(process.argv[2] || "-", "utf8", function(error, contents) {
  4. if (error) throw error;
  5. rw.writeFile("-", contents, "utf8", function(error) {
  6. if (error) throw error;
  7. });
  8. });