vimwiki/tech/tar.wiki

19 lines
203 B
Plaintext
Raw Normal View History

2021-10-11 03:22:53 +00:00
= Tar =
Make tar balls and compress them
== Compress a folder ==
{{{
tar -czvf outfile.tar.gz /dir/to/compress
}}}
== Open a tar ball ==
{{{
tar -xzvf /path/to/tar/ball.tar.gz
}}}
[[index]]