My tar file has many files but when I use tar xvf only the first file is extracted. What is the problem?
ray @ loninsathp1:/home/ray/scripts#ls -lrt use*
-rwxr--r-- 1 ray dba 271934 Jun 22 16:31 useful_scripts.tar
ray @ loninsathp1:/home/ray/scripts#tar -xvf useful_scripts.tar
x a.sql, 221 bytes, 1 tape blocks
tar tvf only displays one file although you can see from the size of the file in ls command the tar contains many files
ray @ loninsathp1:/home/ray/scripts#ls -lrt use*
-rwxr--r-- 1 ray dba 271934 Jun 22 16:31 useful_scripts.tar
ray @ loninsathp1:/home/ray/scripts#tar -xvf useful_scripts.tar
x a.sql, 221 bytes, 1 tape blocks
tar tvf only displays one file although you can see from the size of the file in ls command the tar contains many files