Bash Script to set up Oracle Identity Environment on Linux
#!/bin/bash ############################################################# # Created on: 2/17/09 # Last Updated: 07/09/09 # Version 2.1.6 ############################################################# #clear the screen clear #check for root user (this script must be run as root) if [[ $EUID -ne 0 ]]; then echo “This script must be run as root” 1>&2 exit 1 fi # Confirm Start of Installation echo -n …
Bash Script to set up Oracle Identity Environment on Linux Read More »