1 |
#!/bin/bash
|
2 |
#--------------------------------------------------------------------------------
|
3 |
#$Source: /cvsroot/esrg/sfesrg/esrgweba/scripts/get_all_src_anon.txt,v $
|
4 |
#$Revision: 1.5 $
|
5 |
#$Date: 2003/04/26 01:06:02 $
|
6 |
#$Author: dtashley $
|
7 |
#--------------------------------------------------------------------------------
|
8 |
#This script is an example script to show how to get all ESRG materials
|
9 |
#via anonymous CVS access. This script will run unmodified on a *nix
|
10 |
#machine, but can also easily be made into a DOS/Windows batch file.
|
11 |
#
|
12 |
#On Unix machines, it is perfectly acceptable to place the materials
|
13 |
#anywhere in the directory tree. On DOS/Windows machines, however,
|
14 |
#everything MUST be placed off "C:\". If this bash script is
|
15 |
#converted to a batch file, "cd c:\" should be the first command.
|
16 |
#--------------------------------------------------------------------------------
|
17 |
#
|
18 |
#For a DOS/Windows machine, "cd c:\" should go here.
|
19 |
#cd c:\
|
20 |
#
|
21 |
#Grab tips from CVS. Note that all of the following CVS commands can be
|
22 |
#combined into one just by listing all the module names on a single command.
|
23 |
#However, for reasons of line length, this is not done in the set of commands
|
24 |
#below.
|
25 |
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/esrg checkout esrgdocs
|
26 |
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/esrg checkout esrgdstb
|
27 |
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/esrg checkout esrgnxpj
|
28 |
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/esrg checkout esrgpcpj
|
29 |
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/esrg checkout esrgphpa
|
30 |
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/esrg checkout esrgpubs
|
31 |
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/esrg checkout esrgubka
|
32 |
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/esrg checkout esrgweba
|
33 |
#
|
34 |
#--------------------------------------------------------------------------------
|
35 |
#$Log: get_all_src_anon.txt,v $
|
36 |
#Revision 1.5 2003/04/26 01:06:02 dtashley
|
37 |
#Comment added.
|
38 |
#
|
39 |
#Revision 1.4 2003/04/26 01:04:16 dtashley
|
40 |
#Keyword change for shorter line length.
|
41 |
#
|
42 |
#Revision 1.3 2003/04/26 00:59:09 dtashley
|
43 |
#Mistakes corrected.
|
44 |
#
|
45 |
#Revision 1.2 2003/04/25 02:37:35 dtashley
|
46 |
#Extra line in log section removed.
|
47 |
#
|
48 |
#Revision 1.1 2003/04/25 02:36:57 dtashley
|
49 |
#Initial checkin.
|
50 |
#--------------------------------------------------------------------------------
|