8 echo Usage: $0 release host /dev/norewindtape
19 /bin/tar cf ${tape} Install
21 cat > /tmp/blockit.c <<'e!o!f'
24 #define BLOCKSIZE (1024 * 62)
31 setvbuf (stdout, (char *)NULL, _IOFBF, BLOCKSIZE);
33 while ((c = getchar()) != EOF) {
47 } /* while there is input */
49 for (j = (BLOCKSIZE - (i % BLOCKSIZE)); j; --j) {
61 (cd /tmp; ${CC} -o blockit blockit.c)
62 /bin/tar cf - ${release} | compress -vV | /tmp/blockit > ${tape}
65 dd bs=62k if=${tape} | compress -d | /bin/tar tvvf -
66 rm -f /tmp/blockit /tmp/blockit.c