Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/typekpb/oradown
Enables download of the SSO protected files from the Oracle website.
https://github.com/typekpb/oradown
download oracle otn shell
Last synced: about 1 month ago
JSON representation
Enables download of the SSO protected files from the Oracle website.
- Host: GitHub
- URL: https://github.com/typekpb/oradown
- Owner: typekpb
- License: mit
- Created: 2017-07-02T05:50:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-19T06:08:16.000Z (over 5 years ago)
- Last Synced: 2024-09-13T00:58:51.520Z (2 months ago)
- Topics: download, oracle, otn, shell
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 10
- Watchers: 7
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Travis](http://travis-ci.org/typekpb/oradown.png?branch=master)](http://travis-ci.org/typekpb/oradown)
# oradown
Enables download of the SSO protected files from the Oracle website.# Usage
Usage: oradown.sh [OPTION]... URL
oradown enables download of the SSO protected files (specified by URL) from the Oracle website.Functional arguments:
-C, --cookie=LICENSE_COOKIE name of the license cookie (mandatory)
-O, --output=FILE output FILE (optional)
-P, --password=PASSWORD set the Oracle PASSWORD (optional)
-U, --username=USERNAME set the Oracle USERNAME (mandatory)
Logging and info arguments:
-H, --help print this help and exit
-V, --version display the version of oradown and exit.Examples:
Downloads weblogic 12c (oradown downloaded via wget):
wget -O - -q https://raw.githubusercontent.com/typekpb/oradown/master/oradown.sh | \
bash -s -- --cookie=accept-weblogicserver-server \
--username=foo --password=bar \
http://download.oracle.com/otn/nt/middleware/12c/12212/fmw_12.2.1.2.0_wls_Disk1_1of1.zipDownloads weblogic 12c (oradown downloaded via curl):
curl -s https://raw.githubusercontent.com/typekpb/oradown/master/oradown.sh | \
bash -s -- --cookie=accept-weblogicserver-server \
--username=foo --password=bar \
http://download.oracle.com/otn/nt/middleware/12c/12212/fmw_12.2.1.2.0_wls_Disk1_1of1.zip