As a developer I have to work with a lot of tools, development environments and frameworks and I want to keep them in the same spot, know what I work with, especially with which version, keep old versions for compatibility reasons and have a simple way of updating stuff without the need to change a… Continue reading How to keep a clean local development environment
Month: February 2022
Archive, compress and send
You want to archive (tar), compress (gzip) and send (scp) a directory in one command? With Linux, it is possible: What does it do? tar cf – yourdir creates a uncompressed archive and writes it to standard out (stdout). gzip -9 -c reads from standard in (stdin), compresses and writes to standard out. ssh -l… Continue reading Archive, compress and send