From 0d19c59c2d6e230937b18c7031b740a881234929 Mon Sep 17 00:00:00 2001 From: cstackpole Date: Sat, 19 Jul 2014 10:44:36 -0700 Subject: [PATCH] Quick clarification of code. --- SC2001.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2001.md b/SC2001.md index 94d628e..a9bfd84 100644 --- a/SC2001.md +++ b/SC2001.md @@ -10,7 +10,7 @@ ### Rationale: -Let's assume somewhere earlier in your code you have put data into a variable (Ex: $string). Now you want to do a search and replace inside the contents of $string. You could pass this to sed as done in the example above, but for simple substitutions utilizing the shell for the same feature is a lot simpler and should be utilized whenever possible. +Let's assume somewhere earlier in your code you have put data into a variable (Ex: $string). Now you want to do a search and replace inside the contents of $string and echo the contents out. You could pass this to sed as done in the example above, but for simple substitutions utilizing the shell for the same feature is a lot simpler and should be utilized whenever possible. ### Contraindications