new files

This commit is contained in:
David Schleef 2000-06-22 20:13:48 +00:00
commit 30fb2c101b
3 changed files with 94 additions and 0 deletions

70
frame.html Normal file
View file

@ -0,0 +1,70 @@
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Mozilla/4.7 [en] (X11; I; Linux 2.3.50 i686) [Netscape]">
<title>Comedi - The Linux Control and Measurement Interface</title>
</head>
<body bgcolor="#000000">
<table border=0 width="99%" align=center cellpadding=2 cellspacing=2
bgcolor="#ffffff">
<tr valign=top>
<td valign=top rowspan=5><nobr>
<font size=8 face="arial,helvetica"><b>
Salmeron Group: UHV-AFM project
</font></b>
</td>
</tr>
</table>
<center>
<table border=0 width="99%" align=center cellpadding=2 cellspacing=2
bgcolor="#ffffff">
<tr valign=top>
<td valign=top rowspan=5><nobr>
<font size=4><b>
Index
</b></font>
<font size=2><b>
<br>
<a href=intro.html>introduction</a>
<br>
<a href=techniques.html>techniques</a>
<br>
<a href=results.html>results</a>
<br>
<a href=literature.html>literature</a>
<br>
</b></font>
<br>
<br>
<font size=4><b>
Links
</b></font>
<font size=2><b>
<br>
<a href=http://stm.lbl.gov/>Salmeron<br>group</a>
<br>
<a href=http://www.lbl.gov/>Berkeley Lab</a>
<br>
<a href=http://stm.lbl.gov/~ds/>David Schleef</a>
</b></font>
</nobr>
</td>
<td valign=top align=left>
CONTENT
</td>
</tr>
</table>
</body>
</html>

13
go Executable file
View file

@ -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

11
inst Executable file
View file

@ -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