From 8b1d03b700160859826da7443034316f27d81576 Mon Sep 17 00:00:00 2001 From: "b.waal" Date: Thu, 19 Sep 2019 03:14:15 +0200 Subject: [PATCH] Fixed typo's --- Sed.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Sed.md b/Sed.md index a8fb19d..6220bf7 100644 --- a/Sed.md +++ b/Sed.md @@ -1,37 +1,37 @@ -# Standard SED repacements +# Standard SED replacements -### DOMAINname: shoud be replaced with $domain +### DOMAINname: should be replaced with $domain Example: ``` sed -i 's/DOMAINname/'$domain'/' ``` -### PHPver: shoud be replaced with $phpver +### PHPver: should be replaced with $phpver Example: ``` sed -i 's/PHPver/'$phpver'/' ``` -### PASSword: shoud be replaced with $PASSword +### PASSword: should be replaced with $PASSword Example: ``` sed -i 's/PASSword/'$PASSword'/' ``` -### DBName: shoud be replaced with $db_name +### DBName: should be replaced with $db_name Example: ``` sed -i 's/DBName/'$db_name'/' ``` -### DBUser: shoud be replaced with $db_user +### DBUser: should be replaced with $db_user Example: ``` sed -i 's/DBUser/'$db_user'/' ``` -### DBPass: shoud be replaced with $db_pass +### DBPass: should be replaced with $db_pass Example: ``` sed -i 's/DBPass/'$db_pass'/'