From 9672f9a0634bac3e834c01d179d5bf6763b107a0 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 13 May 2019 21:49:12 -0400 Subject: [PATCH] Fix Shellcheck warning in test/m Also see http://github.com/koalaman/shellcheck. It should be available for install on your Linux box from the package manager. --- test/m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/m b/test/m index d472c44a..454028c3 100755 --- a/test/m +++ b/test/m @@ -1,3 +1,3 @@ #!/usr/bin/env bash -egrep -v '^#' ../doc/function_manpages | sed 's/, /\n/g' | sed 's/|.*$//' | sort | uniq +grep -v -E '^#' ../doc/function_manpages | sed 's/, /\n/g' | sed 's/|.*$//' | sort | uniq -- 2.47.3