17 lines
481 B
Bash
17 lines
481 B
Bash
# The spawned programs return output that is the same
|
|
# as if we had run them directly from the command-line.
|
|
$ go run spawning-processes.go
|
|
> date
|
|
Thu 05 May 2022 10:10:12 PM PDT
|
|
|
|
# date doesn't have a `-x` flag so it will exit with
|
|
# an error message and non-zero return code.
|
|
command exited with rc = 1
|
|
> grep hello
|
|
hello grep
|
|
|
|
> ls -a -l -h
|
|
drwxr-xr-x 4 mark 136B Oct 3 16:29 .
|
|
drwxr-xr-x 91 mark 3.0K Oct 3 12:50 ..
|
|
-rw-r--r-- 1 mark 1.3K Oct 3 16:28 spawning-processes.go
|