diff --git a/public/execing-processes b/public/execing-processes index a2639f1..f65a863 100644 --- a/public/execing-processes +++ b/public/execing-processes @@ -98,11 +98,13 @@ we’ll use exec.LookPath to find it (probably

Exec requires arguments in slice form (as apposed to one big string). We’ll give ls a few -common arguments.

+common arguments. It has to include the program +name as the first argument. Details see +man 2 execve

-
    args := []string{"-a", "-l", "-h"}
+            
    args := []string{"ls", "-a", "-l", "-h"}