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
Index: T a

⟦19c4e99fa⟧ TextFile

    Length: 1246 (0x4de)
    Types: TextFile
    Names: »awk.or2rfc«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/Tools/tables/pp-rfc987/awk.or2rfc« 

TextFile

#!/bin/sh
#
#
#       awk.or2rfc - is an awk program that reformats the
#       the PP tables into the RFC-987 International ones.
#
#
#       syntax :    awk.or2rfc  {first | multi}  input-table
#
######################################################################

AWK=/usr/bin/awk

FILEIN=$1
FILETEMP=or2rfc.temp

if [ -z "$FILEIN" ]
then
        echo " "
        echo "Usage:   awk.or2rfc  input-table"
        echo " "
        exit 1
fi

grep "^C" $FILEIN >$FILETEMP
grep "^ADMD" $FILEIN >>$FILETEMP
grep "^PRMD" $FILEIN >>$FILETEMP
grep "^O" $FILEIN | sort -u >>$FILETEMP 



#---------------------- Start of the awk routines  --------------------------#



$AWK <$FILETEMP '
BEGIN   {

		print("#")
		print("#=============================================================================")
		print("#======================================================= United Kingdom ======")
		print("#        Last update: 90.02.01")
		print("#        Responsible: John Seymour <John.Seymour@ean-relay.ac.uk>")
		print("#")
		print("#    Beware of the quoted dots in this table!")
		print("#")
		FS =":"
        }

/^#.*/  {
                continue
        }
        {
		printf("%s#%s#\n", $1, $2)
		continue
        }

END     {}

'

rm $FILETEMP