#!/bin/sh

TAPE=unixv7.tap
: >$TAPE  # trucate existing one

for f in f0 f1 f2 f3 f4; do
  zcat $f.gz | ./raw2tap.rb 512 >>$TAPE
done

for f in f5 f6; do
  zcat $f.gz | ./raw2tap.rb 10240 >>$TAPE
done

printf "\377\377\377\377" >>$TAPE

