From 9aea9b7bea18c5c5ff7baf46deb4b9080693981e Mon Sep 17 00:00:00 2001 From: Sylvia van Os Date: Wed, 1 Jun 2022 15:28:50 +0200 Subject: [PATCH] Fix typo --- SC2013.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2013.md b/SC2013.md index 73c850f..c405c49 100644 --- a/SC2013.md +++ b/SC2013.md @@ -44,7 +44,7 @@ NOTE: `grep -v '^ *#'` is a placeholder example and not needed. To just loop thr while IFS= read -r line do echo "Line: $line" -done << file +done < file # or: done <<< "$variable" ```