From 895b7603ab7744949095ee591fe651645d7895bb Mon Sep 17 00:00:00 2001 From: Nathaniel Landau Date: Wed, 27 May 2015 10:58:04 -0400 Subject: [PATCH] removed comment --- lib/utils.sh | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/lib/utils.sh b/lib/utils.sh index f2e0944..76e7500 100755 --- a/lib/utils.sh +++ b/lib/utils.sh @@ -118,21 +118,3 @@ do die "${file} does not exist." fi done - - -# Notes to self -# #################### -# This is how you create a variable with multiple lines -# read -d '' String <<"EOF" -# one -# two -# three -# four -# EOF -# echo ${String} -# -# # How to get a script name -# scriptLocation="${0}" -# scriptFile="${scriptLocation##*/}" -# scriptName="${scriptFile%.*}" -# echo "${scriptName}"