What does tar -cf config.tar /etc primarily do?
tar -cf config.tar /etc
Extract config.tar over /etc.
config.tar
/etc
Compress every file in place while leaving no archive.
Bundle the /etc directory tree into one archive without inherently compressing it.
Move /etc into config.tar and delete the original directory.