This repository was archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgg-12.1.2.sh
53 lines (45 loc) · 3.68 KB
/
gg-12.1.2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
# Script for downloading Oracle GoldenGate 12.1.2 documentation
# Author: Adam Leszczynski, [email protected]
#
# Date of verification: 2017-07-08
mkdir "gg-12.1.2"
cd "gg-12.1.2"
mkdir "Administration"
cd "Administration"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GDRAD.pdf" -O "Management Pack for Oracle GoldenGate Director Administrator's Guide.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GWUAD.pdf" -O "Administering Oracle GoldenGate for Windows and UNIX.pdf"
cd ..
mkdir "Installation"
cd "Installation"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/EMGGP.pdf" -O "Oracle Enterprise Manager Oracle GoldenGate System Monitoring Plug-In Installation Guide.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GIDBI.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for DB2 for i.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GIDBL.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for DB2 LUW.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GIDBZ.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for DB2 zOS.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GIINF.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for Informix.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GIMYS.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for MySQL.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GISMX.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for NonStop SQL-MX.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GIORA.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for Oracle Database.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GIOTT.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for Oracle TimesTen.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GIMSS.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for SQL Server.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GISYB.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for Sybase.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GITER.pdf" -O "Oracle GoldenGate Installing and Configuring Oracle GoldenGate for Teradata.pdf"
cd ..
mkdir "Reference"
cd "Reference"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GMESG.pdf" -O "Oracle GoldenGate Error Messages Reference for Oracle GoldenGate for Windows and UNIX.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/OGGLC.pdf" -O "Oracle GoldenGate Licensing Information.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GLOGD.pdf" -O "Oracle GoldenGate Logdump Reference for Oracle GoldenGate.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GWURF.pdf" -O "Oracle GoldenGate Reference for Oracle GoldenGate for Windows and UNIX.pdf"
cd ..
mkdir "Release Notes"
cd "Release Notes"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GDREL.pdf" -O "Management Pack for Oracle GoldenGate Oracle GoldenGate Director Release Notes.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GEMRN.pdf" -O "Oracle GoldenGate Oracle GoldenGate Enterprise Manager Plug-In Release Notes.pdf"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GRLWU.pdf" -O "Oracle GoldenGate Release Notes for Oracle GoldenGate for Windows and UNIX.pdf"
cd ..
mkdir "Upgrade and Patching"
cd "Upgrade and Patching"
wget -c "http://docs.oracle.com/goldengate/1212/gg-winux/GWUUP.pdf" -O "Oracle GoldenGate Upgrading Oracle GoldenGate for Windows and UNIX.pdf"
cd ..
cd ..