ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/cvswww/cvswww-clean.c
Revision: 1.2
Committed: Mon Jun 18 15:04:45 2001 UTC (22 years, 11 months ago) by tdb
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
We no longer need these scripts as everything is done on one machine.

File Contents

# Content
1 #include <stdio.h>
2
3 //---------------------------------------------------------
4 // cvswww-send-clean.c
5 //
6 // Script to export webpages from CVS and ftp to webserver
7 // Written by Tim Bishop [tdb1@ukc.ac.uk] 20/10/2000
8 //
9 // Copyright i-Scream, 2000
10 // http://www.i-scream.org.uk
11 //---------------------------------------------------------
12
13
14 int main() {
15
16 //cleanup
17 system("rm -Rf /tmp/cvswww-extract-tmp");
18 system("rm -Rf /tmp/cvswww-send-tmp");
19 system("rm -Rf /tmp/iscream-cvs-tmp");
20
21 return 0;
22 }