Y
Hacker News
new
|
ask
|
show
|
jobs
by
pkrumins
4836 days ago
Do you mean `tar -xzvf`?
1 comments
atsaloli
4836 days ago
Yes, formally. You don't have to specify -z in GNU tar today, you can just say -x and it'll add -z or -j for you -- it figures out on the fly if the archive's been compressed and how. Very convenient.
link
dminor
4836 days ago
You can also leave off the dash: `tar xvf`
link
riquito
4836 days ago
And you may skip verbose too: `tar xf`
link