Here’s another way of creating a tar ball from a list of files.

<pre lang="bash">tar -cvf backup.tar.gz a.txt b.txt c.txt d.txt e.txt

Here’s how to view files in a tarball.

<pre lang="bash">tar -tvf backup.tar.gz