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 d

⟦d803bed66⟧ TextFile

    Length: 976 (0x3d0)
    Types: TextFile
    Names: »destructions«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Repunsel/destructions« 

TextFile

                                     Repunsel
                               +++++++++++++++++
Compiling Repunsel:

You should have the files: repunsel.c and repunsel.l and lex.yy.c


repunsel.l must be run thru the unix 'lex' utility to produce the file lex.yy.c
Then compile repunsel.c and lex.yy.c to produce repunsel

     $lex repunsel.l
     $cc repunsel.c lex.yy.c -o repunsel
  (You may get a list of warnings from the compiler. Ignore them.)

Note: lex.yy.c is included in this package. You only need to use lex if you
wish to make changes to repunsel. 

Using Repunsel:

Repunsel uses standard input and output.

Examples:

To translate a file called 'note' and output repunsel to a file called 'knote':

     $ cat note | repunsel > knote

To translate a file called 'note' and just print it to the screen:

     $ cat note | repunsel

To have repunsel wait to translate what you type at the keyboard and return it
in repunsel on your screen:

     $ repunsel

---