gobyexample/examples/execing-processes/execing-processes.sh
2012-10-10 11:52:34 -07:00

13 lines
446 B
Bash

# When we run our program it is replaced by `ls`.
$ go run execing-processes.go
$ ls -a -l -h
total 16
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 execing-processes.go
# Note that Go does not offer a classic Unix `fork`
# function. Usually this isn't an issue though, since
# starting goroutines, spawning processes, and exec'ing
# processes covers most use cases for `fork`.