タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

gzipに関するHHRのブックマーク (1)

  • gzip 圧縮したテキストファイルは cat でつなげても大丈夫だよ - Qiita

    仕様 RFC 1952 にも書いてあるよ A gzip file consists of a series of "members" (compressed data sets). The format of each member is specified in the following section. The members simply appear one after another in the file, with no additional information before, between, or after them. gzip ファイルのフォーマットは単に member の連続でしかないとのこと。 なら member の連続どうしの gzip ファイルを 2 つ以上つなげても同じだよね。 実際にやってみよう $ echo hello | gzip -c > he

    gzip 圧縮したテキストファイルは cat でつなげても大丈夫だよ - Qiita
    HHR
    HHR 2020/08/12
    知らなかった…。man gzipのADVANCED USAGEにも書いてある…。bzip2のようなsplittableとはまた別なのかな?「member」なるものを繋げているだけで先頭から順番に解凍していかなければならない?
  • 1