925Creating a tar Archive
tar -vcf target.tar source
v → verbose
c → create
f → file. word followed by f will be name of archive, f needs to be last in the command.
tar -vcf target.tar source
v → verbose
c → create
f → file. word followed by f will be name of archive, f needs to be last in the command.