ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/misc/scripts/cvswww/cvswww-clean.c
Revision: 1.1
Committed: Fri Mar 9 00:22:52 2001 UTC (23 years, 2 months ago) by tdb
Content type: text/plain
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Log Message:
C programs used to manage the website from cvs.

File Contents

# User Rev Content
1 tdb 1.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     }