From 30fb2c101bbc2d4f86df592948f39b057286eadb Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 22 Jun 2000 20:13:48 +0000 Subject: [PATCH] new files --- frame.html | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ go | 13 ++++++++++ inst | 11 +++++++++ 3 files changed, 94 insertions(+) create mode 100644 frame.html create mode 100755 go create mode 100755 inst diff --git a/frame.html b/frame.html new file mode 100644 index 0000000..eadde32 --- /dev/null +++ b/frame.html @@ -0,0 +1,70 @@ + + + + + + Comedi - The Linux Control and Measurement Interface + + + + + + + + +
+ +Salmeron Group: UHV-AFM project + +
+ +
+ + + + + +
+ +Index + + +
+introduction +
+techniques +
+results +
+literature +
+
+
+
+ +Links + + +
+Salmeron
group
+
+Berkeley Lab +
+David Schleef +
+ +
+
+ +CONTENT + + + + + + +
+ + diff --git a/go b/go new file mode 100755 index 0000000..16b5f9e --- /dev/null +++ b/go @@ -0,0 +1,13 @@ +#!/bin/bash + + +grep -B 99999 CONTENT frame.html | grep -v CONTENT >frame.pre +grep -A 99999 CONTENT frame.html | grep -v CONTENT >frame.post + +cat frame.pre intro-x.html frame.post >intro.html +cat frame.pre techniques-x.html frame.post >techniques.html +cat frame.pre results-x.html frame.post >results.html +cat frame.pre literature-x.html frame.post >literature.html + + + diff --git a/inst b/inst new file mode 100755 index 0000000..b9daf96 --- /dev/null +++ b/inst @@ -0,0 +1,11 @@ +#!/bin/bash + + +DEST=~/www/research + +for each in $(cat filelist) +do + cp $each $DEST/$each +done + +cd $DEST && ln -s intro.html index.html