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

⟦e9158cb66⟧ TextFile

    Length: 844 (0x34c)
    Types: TextFile
    Names: »awk.rfc2or«

Derivation

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

TextFile

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


AWK=/usr/bin/awk

FILE=$1

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





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


$AWK <$FILE '
BEGIN   {
                FS ="#"
        }
/^#.*/  {
                printf("#%s%s\n", $1, $2)
                continue
        }
        {
                ok = index ($1, ".")

                if ( ok ) {
                        printf("%s:%s\n", $1, $2)
                        continue
                }
        }
END     {}
'