-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2011-05-19 16:20, Pedro Lopes wrote:
I'm trying to find an already-made XY abstraction, and it seems that this could be the one:
Although I cannot use it, what file type is this?
p.s.: I did some digging into file type and I got: pedro@io:~/Downloads$ file file file: gzip compressed data, was "xy-controller.tar", from FAT
so the file type is gz and was made from xy-controller.tar
filesystem (MS-DOS, OS/2, NT), last modified: Mon Jun 2 23:29:18 2003
But even so, it doesn't uncompress here in my Linux.
tools are getting too intelligent nowadays, as they refuse to gunzip files not endig with gz. so this should work: $ cat file | gunzip -c | tar xv
or this: $ mv file xy-controller.tar.gz $ tar xvzf xy-controller.tar.gz
fgmasdr IOhannes