|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 691 (0x2b3) Types: TextFile Names: »manimake«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec1/rn/manimake« └─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦97f3ac3f8⟧ »EurOpenD3/news/rn.tar.Z« └─⟦df9cf1b54⟧ └─⟦this⟧ »manimake«
#!/bin/sh # $Header: manimake,v 4.3 85/05/01 11:42:46 lwall Exp $ # # $Log: manimake,v $ # Revision 4.3 85/05/01 11:42:46 lwall # Baseline for release with 4.3bsd. # : make MANIFEST and MANIFEST.new say the same thing if test -f MANIFEST.new; then cat <<'EOH' > MANIFEST After all the rn kits are run you should have the following files: Filename Kit Description -------- --- ----------- EOH sort MANIFEST.new >.mani grep . kit*.list | sed 's/^kit\(.*\)\.list:\$*\(.*\)$/\2 |\1|/' | \ sort | \ join -a1 - .mani | \ awk -F'|' '{printf "%-16s%2s %s\n",$1,$2,$3}' | \ unexpand >> MANIFEST rm .mani else echo "You don't have a MANIFEST.new file. Run manifake." fi