Reminder that GNU tar(1) has long options support, so instead of 'tar zxvf' or whatever line noise you can do
tar --extract < my-archive.tar.gz
@bugaevc I would not recommend to get used to that because it’s not POSIX. It will not work with any other version of tar. Remembering x for extract is not that hard.
@js evidently it *is* that hard, otherwise this wouldn't be such a meme (cf. the xkcd). And extensions exist so you can make use of them (when you can).
But yeah, if you're writing portable scripts and limiting yourself to POSIX, maybe don't use that.