I figured out how to remember it. To create tar, use c option and for extracting replace c with x ==> $tar will remain same for both Lol :) . tar -cvf filename.tar file/dir_path && tar -xvf filename.tar.
c
x
$tar
tar -cvf filename.tar file/dir_path
tar -xvf filename.tar
Weβre a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: What do you Google EVERY. SINGLE. TIME. and never just memorize? VIEW POST
VIEW PARENT COMMENT VIEW FULL DISCUSSIONI figured out how to remember it. To create tar, use
c
option and for extracting replacec
withx
==>$tar
will remain same for both Lol :) .tar -cvf filename.tar file/dir_path
&&tar -xvf filename.tar
.