From 7ff7c117812d44fc8ed7a6f9a0031eff07b6c2e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Mon, 29 Jan 2024 22:38:05 +0100 Subject: [PATCH] Don't pipe to /dev/null --- qsgen2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qsgen2 b/qsgen2 index a10b475..98f2f15 100755 --- a/qsgen2 +++ b/qsgen2 @@ -316,7 +316,7 @@ function _pages() { # Grab the title from the Page if (${debug}) echo "_pages: Grepping for page_title" - page_title=$( echo ${page_content} | head -1 | grep '#title' | cut -d= -f2 > /dev/null ) + page_title=$( echo ${page_content} | head -1 | grep '#title' | cut -d= -f2 ) echo "Page Title: ${page_title}" exit