Latest Project
Go-Tail
The implementation of tail command from linux using Go. It can be used to display the last nth lines or bytes of a file. It can also handle multiple files concurrently using goroutines and channels. The snippet shows the concurrent file reader in Go. Github repo
What I've learned:
- goroutines and channels
- command line flags and arguments
- reading and processing files