Linux
Prepare $ mkdir dist $ cd dist $ touch file1.txt file2.txt $ mkdir js 1. Create tar Archive File $ tar -cvf dist.tar ./dist a dist a dist/file2.txt a dist/file1.txt a dist/js NOTE: c – Creates a new .tar archive file. v – Verbosely show the .tar file progress. f – File name type of the archive file. …