diff --git a/translated/tech/20161004 What happens when you start a process on Linux.md b/translated/tech/20161004 What happens when you start a process on Linux.md index a21dab5da8..5c97fe7dc4 100644 --- a/translated/tech/20161004 What happens when you start a process on Linux.md +++ b/translated/tech/20161004 What happens when you start a process on Linux.md @@ -11,7 +11,7 @@ start_process(["ls", "-l", "my_cool_directory"]) ``` -这是一个合理的想法,显然这是它在 DOS 或 Windows 中的工作原理。我想说的是,这_并不是_ Linux 上的工作原理。但是,我查阅了文档,确实有一个 [posix_spawn][2] 的系统调用基本上是这样做的,不过这不在本文的讨论范围内。 +这是一个合理的想法,显然这是它在 DOS 或 Windows 中的工作原理。我想说的是,这并不是 Linux 上的工作原理。但是,我查阅了文档,确实有一个 [posix_spawn][2] 的系统调用基本上是这样做的,不过这不在本文的讨论范围内。 ### fork 和 exec @@ -150,4 +150,4 @@ via: https://jvns.ca/blog/2016/10/04/exec-will-eat-your-brain/ [2]:http://man7.org/linux/man-pages/man3/posix_spawn.3.html [3]:https://github.com/kamalmarhubi/shell-workshop [4]:https://rachelbythebay.com/w/2014/08/19/fork/ -[5]:http://kamalmarhubi.com/blog/2015/06/30/my-favourite-bug-so-far-at-the-recurse-center/ \ No newline at end of file +[5]:http://kamalmarhubi.com/blog/2015/06/30/my-favourite-bug-so-far-at-the-recurse-center/