From 230ba43ef7c4b444273487b1ac7d3ef391eab014 Mon Sep 17 00:00:00 2001 From: ENJOU1224 <68260656+ENJOU1224@users.noreply.github.com> Date: Sun, 25 Feb 2024 11:27:27 +0800 Subject: [PATCH 1/2] Fixed markdown syntax errors in README-zh.md Fixed the issue where the implementation of italics in Markdown failed due to the lack of spaces before and after the text, and the inappropriate appearance of underscores in the rendered article. --- README-zh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index 4318464..21f40e2 100644 --- a/README-zh.md +++ b/README-zh.md @@ -190,7 +190,7 @@ - 将 web 服务器上当前目录下所有的文件(以及子目录)暴露给你所处网络的所有用户,使用: `python -m SimpleHTTPServer 7777` (使用端口 7777 和 Python 2)或`python -m http.server 7777` (使用端口 7777 和 Python 3)。 -- 以其他用户的身份执行命令,使用 `sudo`。默认以 root 用户的身份执行;使用 `-u` 来指定其他用户。使用 `-i` 来以该用户登录(需要输入_你自己的_密码)。 +- 以其他用户的身份执行命令,使用 `sudo`。默认以 root 用户的身份执行;使用 `-u` 来指定其他用户。使用 `-i` 来以该用户登录(需要输入 _你自己的_ 密码)。 - 将 shell 切换为其他用户,使用 `su username` 或者 `su - username`。加入 `-` 会使得切换后的环境与使用该用户登录后的环境相同。省略用户名则默认为 root。切换到哪个用户,就需要输入_哪个用户的_密码。 From aca71432222b0259feeb2632b5f3c26b8884e5ef Mon Sep 17 00:00:00 2001 From: ENJOU1224 <68260656+ENJOU1224@users.noreply.github.com> Date: Sun, 25 Feb 2024 11:38:12 +0800 Subject: [PATCH 2/2] Fixed the issue where the implementation of italics in Markdown failed due to the lack of spaces before and after the text, and the inappropriate appearance of underscores in the rendered article. --- README-zh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index 21f40e2..1371378 100644 --- a/README-zh.md +++ b/README-zh.md @@ -192,7 +192,7 @@ - 以其他用户的身份执行命令,使用 `sudo`。默认以 root 用户的身份执行;使用 `-u` 来指定其他用户。使用 `-i` 来以该用户登录(需要输入 _你自己的_ 密码)。 -- 将 shell 切换为其他用户,使用 `su username` 或者 `su - username`。加入 `-` 会使得切换后的环境与使用该用户登录后的环境相同。省略用户名则默认为 root。切换到哪个用户,就需要输入_哪个用户的_密码。 +- 将 shell 切换为其他用户,使用 `su username` 或者 `su - username`。加入 `-` 会使得切换后的环境与使用该用户登录后的环境相同。省略用户名则默认为 root。切换到哪个用户,就需要输入 _哪个用户的_ 密码。 - 了解命令行的 [128K 限制](https://wiki.debian.org/CommonErrorMessages/ArgumentListTooLong)。使用通配符匹配大量文件名时,常会遇到“Argument list too long”的错误信息。(这种情况下换用 `find` 或 `xargs` 通常可以解决。)