Fixed typo's

This commit is contained in:
b.waal
2019-09-19 03:14:15 +02:00
parent 1b30bf159e
commit 8b1d03b700

14
Sed.md
View File

@@ -1,37 +1,37 @@
# Standard SED repacements # Standard SED replacements
### DOMAINname: shoud be replaced with $domain ### DOMAINname: should be replaced with $domain
Example: Example:
``` ```
sed -i 's/DOMAINname/'$domain'/' <path/to/filename> sed -i 's/DOMAINname/'$domain'/' <path/to/filename>
``` ```
### PHPver: shoud be replaced with $phpver ### PHPver: should be replaced with $phpver
Example: Example:
``` ```
sed -i 's/PHPver/'$phpver'/' <path/to/filename> sed -i 's/PHPver/'$phpver'/' <path/to/filename>
``` ```
### PASSword: shoud be replaced with $PASSword ### PASSword: should be replaced with $PASSword
Example: Example:
``` ```
sed -i 's/PASSword/'$PASSword'/' <path/to/filename> sed -i 's/PASSword/'$PASSword'/' <path/to/filename>
``` ```
### DBName: shoud be replaced with $db_name ### DBName: should be replaced with $db_name
Example: Example:
``` ```
sed -i 's/DBName/'$db_name'/' <path/to/filename> sed -i 's/DBName/'$db_name'/' <path/to/filename>
``` ```
### DBUser: shoud be replaced with $db_user ### DBUser: should be replaced with $db_user
Example: Example:
``` ```
sed -i 's/DBUser/'$db_user'/' <path/to/filename> sed -i 's/DBUser/'$db_user'/' <path/to/filename>
``` ```
### DBPass: shoud be replaced with $db_pass ### DBPass: should be replaced with $db_pass
Example: Example:
``` ```
sed -i 's/DBPass/'$db_pass'/' <path/to/filename> sed -i 's/DBPass/'$db_pass'/' <path/to/filename>