diff --git a/nodes/core/storage/28-tail.js b/nodes/core/storage/28-tail.js index 58c2bd06b..e241d4a6e 100644 --- a/nodes/core/storage/28-tail.js +++ b/nodes/core/storage/28-tail.js @@ -28,7 +28,7 @@ module.exports = function(RED) { var err = ""; // TODO: rewrite to use node-tail - var tail = spawn("tail", ["-F", this.filename]); + var tail = spawn("tail", ["-F", "-n", "0", this.filename]); tail.stdout.on("data", function (data) { if (node.split) { // TODO: allow customisation of the line break - as we do elsewhere