From 2b9b3dbd1688e11452d307a61dfc5c7f4725d226 Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Fri, 3 May 2024 01:36:07 -0400 Subject: [PATCH] break lines in Makefile --- content/posts/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/posts/Makefile b/content/posts/Makefile index 7a5cb3c..3dce8ea 100644 --- a/content/posts/Makefile +++ b/content/posts/Makefile @@ -3,7 +3,9 @@ SHELL=/bin/bash .PHONY: list list: @echo "Listing out existing tags..." - grep -rh --exclude=Makefile ":tags:" | awk -F":tags:" '{print $$2}' | xargs -I % echo % | tr -s ', ' '\n' | sort | uniq + grep -rh --exclude=Makefile ":tags:" | awk -F":tags:" '{print $$2}' \ + | xargs -I % echo % | tr -s ', ' '\n' | sort | uniq @echo @echo "Listing out existing categories..." - grep -rh --exclude=Makefile ":category:" | awk -F":category:" '{print $$2}' | xargs -I % echo % | tr -s ', ' '\n' | sort | uniq + grep -rh --exclude=Makefile ":category:" | awk -F":category:" '{print $$2}' \ + | xargs -I % echo % | tr -s ', ' '\n' | sort | uniq