Wondering whether it would be a good idea to re-implement AppImage tools in Golang.
Advantages:
- Maintainable, easy code (unlike "modern C++")
- Short compilation times
- Statically linked binaries, no dependencies
- Synergies with snap?
- Fun?
| package myexec | |
| import ( | |
| "bufio" | |
| "bytes" | |
| "context" | |
| "fmt" | |
| "io" | |
| "os" | |
| "os/exec" |