diff --git a/published/20200131 Intro to the Linux command line.md b/published/20200131 Intro to the Linux command line.md index 49e670529e..49550210fe 100644 --- a/published/20200131 Intro to the Linux command line.md +++ b/published/20200131 Intro to the Linux command line.md @@ -29,8 +29,8 @@ Linux 命令行简介 |---|---| | `pwd` | 显示我在文件系统中的位置(在最初进入系统时运行将显示主目录) | | `ls` | 列出我的文件 | -| `ls-a` | 列出我更多的文件(包括隐藏文件) | -| `ls-al` | 列出我的文件,并且包含很多详细信息(包括日期、文件大小和权限) | +| `ls -a` | 列出我更多的文件(包括隐藏文件) | +| `ls -al` | 列出我的文件,并且包含很多详细信息(包括日期、文件大小和权限) | | `who` | 告诉我谁登录了(如果只有你,不要失望) | | `date` | 日期提醒我今天是星期几(也显示时间) | | `ps` | 列出我正在运行的进程(可能只是你的 shell 和 `ps` 命令) | @@ -51,7 +51,7 @@ Linux 命令行简介 | 命令 | 用途 | |---|---| -| `echo “echo hello” > tryme` | 创建一个新的文件并将 “echo hello” 写入该文件 | +| `echo "echo hello" > tryme` | 创建一个新的文件并将 “echo hello” 写入该文件 | | `chmod 700 tryme` | 使新建的文件可执行 | | `tryme` | 运行新文件(它应当运行文件中包含的命令并且显示 “hello” )| | `ps aux` | 显示所有运行中的程序 |