我想通过netcat编译一些markdown帖子。这里是Makefile
。
# Makefile
all: $(POSTS)
$(POST_DEST_DIR)/%.html: $(POST_SRC_DIR)/%.md | $(POST_DEST_DIR)
@nc localhost 3000 < $< > $@
@echo 'compiled $@'
.DELETE_ON_ERROR: $(POSTS)
当 TCP 服务器出错退出时,在 Node.js包装器nc
出错时退出而不出错。nc
这是一个 Node.js 包装器脚本。
// nc.js
var client = require('net').connect(3000);
process.stdin.pipe(client);
client.pipe(process.stdout);
client.on('error', function (err) {
console.error(err.message);
process.exit(1);
});
安然
# Makefile with nc.js
$(POST_DEST_DIR)/%.html: $(POST_SRC_DIR)/%.md | $(POST_DEST_DIR)
@node nc.js < $< > $@
@echo 'compiled $@'
TCP 服务器也是用 NodeJS 编写的。我想nc
在 TCP 服务器崩溃时以错误退出以make
立即停止进程。
这是一个用于测试的 TCP 服务器。
// tcp server for error test
require('net').createServer(function(socket) {
process.exit(1);
}).listen(3000);
我已经阅读了nc
手册页。但我发现做我想做的事是不可能的。我错过了什么吗?