From 83acc1019f10634dc30426eea3ce1c811f018a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Ara=C3=BAjo?= Date: Sun, 12 Feb 2017 08:35:08 -0300 Subject: [PATCH] randomize-lines: fix audit randomize-lines: * Use `system "echo", "-e", "\"` instead of `system "echo -e \"` --- Formula/randomize-lines.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/randomize-lines.rb b/Formula/randomize-lines.rb index aa237a4b38b..a0d03d67ebf 100644 --- a/Formula/randomize-lines.rb +++ b/Formula/randomize-lines.rb @@ -19,6 +19,6 @@ class RandomizeLines < Formula end test do - system "echo -e \"1\n2\n4\" | \"#{bin}/rl\" -c 1" + system system "echo", "-e", "\" ""1\n2\n4\" | \"#{bin}/rl\" -c 1" end end