DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦30d6d84c2⟧ TextFile

    Length: 331 (0x14b)
    Types: TextFile
    Names: »recieve-dist«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦dbcd4071d⟧ »./gnu-ada-1.05.tar.Z« 
        └─⟦999713de5⟧ 
            └─⟦this⟧ »recieve-dist« 

TextFile

#!/bin/sh
# check args
if test $# -lt 3
then cat <<!
usage: $0 file-name release part-number

e.g. $0 temp.text 1.05 2

!
exit 1
fi
if test -f $1
  then
    echo "<<Decoding>>"
    uudecode $1
    echo "<<Uncompressing>>"
    uncompress r$2-ada$3.tar
    tar -xvf r$2-ada$3.tar
  else echo "File " $1 "does not exist"
   exit 1
fi