我需要为压缩文件添加扩展名.tgz或.gz。但我不知道这个命令是否
tar -czf somefile.XXX some/path/to/dir
在压缩之前生成一个tarball,或者首先压缩目录中的所有文件然后将它们压缩起来。
应该.tgz == .tar.gz,和.gz == .zip?
答案 0 :(得分:2)
它在压缩之前生成tar存档。
后缀.tgz
是.tar.gz
的简写,相当于首先使用.tar
制作tar -cf somefile.tar some/path/to/dir
,然后使用gzip somefile.tar
压缩def get_count(self, cr, uid, ids, sequence, arg, context=None):
res = {}
cr.execute('SELECT count(*) from sun_helpdesk')
u_data = cr.fetchall()
print "cr:", u_data
print "res:",int(u_data[0][0])
#res[id] must be set to False and not to None because of XML:RPC
# "cannot marshal None unless allow_none is enabled"
res[ids[0]] = int(u_data[0][0]) if ids else False
return res
。