From fcffc11bf3cce3ab0b4299e98d1e88e3aa202b2b Mon Sep 17 00:00:00 2001 From: YuanPei Li Date: Tue, 5 Jan 2021 16:35:17 +0800 Subject: [PATCH 1/2] fix unexpected render with double quote Fix double quotes which escape with back slashes doesn't rendered well [in the document](https://linkedin.github.io/school-of-sre/linux_basics/linux_server_administration/#passwd). --- courses/linux_basics/linux_server_administration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/courses/linux_basics/linux_server_administration.md b/courses/linux_basics/linux_server_administration.md index 7618f9d..bd2c182 100644 --- a/courses/linux_basics/linux_server_administration.md +++ b/courses/linux_basics/linux_server_administration.md @@ -109,7 +109,7 @@ The passwd command is used to create or modify passwords for a user. In the above examples, we have not assigned any password for users 'shivam' or 'amit' while creating them. -\"!!\" in an account entry in shadow means the account of an user has +`!!` in an account entry in shadow means the account of an user has been created, but not yet given a password. ![](images/linux/admin/image13.png) From eee16427ae912d519e6ea4a14667b080eb7e9f47 Mon Sep 17 00:00:00 2001 From: YuanPei Li Date: Tue, 5 Jan 2021 16:40:00 +0800 Subject: [PATCH 2/2] left only double quotes --- courses/linux_basics/linux_server_administration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/courses/linux_basics/linux_server_administration.md b/courses/linux_basics/linux_server_administration.md index bd2c182..e19d21b 100644 --- a/courses/linux_basics/linux_server_administration.md +++ b/courses/linux_basics/linux_server_administration.md @@ -109,7 +109,7 @@ The passwd command is used to create or modify passwords for a user. In the above examples, we have not assigned any password for users 'shivam' or 'amit' while creating them. -`!!` in an account entry in shadow means the account of an user has +"!!" in an account entry in shadow means the account of an user has been created, but not yet given a password. ![](images/linux/admin/image13.png)