Welcome to my GitHub profile.
Other places to find me:
- Twitter: chabala
- Mastodon: @chabala@fosstodon.org
- LinkedIn: chabala
- reddit: u/chabala /r/java activity
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abuseWelcome to my GitHub profile.
Other places to find me:
Web interface & API for an RS-232 controlled device (a Sharp AQUOS TV) running on a WIZnet W5100S-EVB-Pico
Recently found some clowny gist was the top result for 'google takeout multiple tgz', where it was using two bash scripts to extract all the tgz files and then merge them together. Don't do that. Use brace expansion, `cat` the TGZs, and extract:
```console
$ cat takeout-20201023T123551Z-{001..011}.tgz | tar xzivf -
```