摘要: 创建tar.xz文件:只要先 tar cvf xxx.tar xxx/ 这样创建xxx.tar文件先,然后使用 xz -z xxx.tar 来将 xxx.tar压缩成为 xxx.tar.xz 解压tar.xz文件:先 xz -d xxx.tar.xz 将 xxx.tar.xz解压成 xxx.tar 阅读全文
posted @ 2020-03-16 18:11 Ruigel1 阅读(1722) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <cstring>#include <cstdio> using namespace std; typedef unsigned char Byte; Byte * intToBytes(const int& N) { Byte* byte = 阅读全文
posted @ 2020-03-16 15:29 Ruigel1 阅读(2671) 评论(0) 推荐(0) 编辑