Introduction
Let’s get an overview of the UNIX system.
We'll cover the following...
Systems programming
This chapter teaches us about systems programming in Go. Systems programming involves working with files and directories, process control, signal handling, network programming, system files, configuration files, and file input and output (I/O). Docker images use the Linux operating system, which means that we might need to develop our utilities with the Linux operating system in mind. However, as Go code is portable, most system utilities work on ...