What program opens a .tar? Not .rar but .tar?
Printable View
What program opens a .tar? Not .rar but .tar?
Winrar :monster:
Or use tar -xfjv filename.tar or some variation of switches from linux :p
WinRAR will open it. Though .tars are generally associated with Linux.
tar -xvf filename.tar will un-tar a tar file. The j flag to tar in Linux pipes a .tar.bz2 file through bunzip2. And I think the f flag has to come last, because tar looks for a filename as an argument to the f flag. x is for extract, v is for verbose, f is for filename.
Winzip should also open .tar files, from what I remember. Any archival program worth anything will be able to un-tar a tar file.
Ok thanks. (isn't a Linux user... well not yet at least)