Trying echo again

This commit is contained in:
Stig-Ørjan Smelror 2024-01-29 22:37:07 +01:00
parent 76c7bbf0aa
commit 7061b70d11

2
qsgen2
View File

@ -316,7 +316,7 @@ function _pages() {
# Grab the title from the Page
if (${debug}) echo "_pages: Grepping for page_title"
page_title=$( head -1 ${page_content} | grep '#title' | cut -d= -f2 )
page_title=$( echo ${page_content} | head -1 | grep '#title' | cut -d= -f2 > /dev/null )
echo "Page Title: ${page_title}"
exit