How do I decompress BZ2 files?

2010-05-22 Thread Bill Vlahos
My hosting company compresses their log files using bz2. I can download the files and the Mac will decompress them when I double click. The Rev decompress command looks like it uses gzip which is different. Is there a way in Rev to decompress the file in the bz2 format so that I can do it all

Re: How do I decompress BZ2 files?

2010-05-22 Thread Christian Langers
Hi Bill, you might try shell()... http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man1/bzip2.1.html e.g. put bunzip2 -k tSource tDestination into tShellScript put/get shell(tShellScript) and escape space with \ in the path part... This might work, Christian

Re: How do I decompress BZ2 files?

2010-05-22 Thread Alejandro Tejada
in another file or display inside a field (if bz2 file content is text): put it into fld displaybz2file or put char 1 to -4 of tOpenfile gz into tnewfile put compress(it) into URL (binfile: tnewfile) Alejandro -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/How-do-I