Search notes:

orahome.bat / orahome.ps1

orahome comes as batch file and PowerShell script that simply changes the directory to the Oracle Home directory.

orahome.bat

@cd %ORACLE_HOME%
Github repository scripts-and-utilities, path: /orahome.bat

orahome.ps1

if ($env:ORACLE_HOME -eq $null) {
   write-host 'Environment variable ORACLE_HOME is not set'
   return
}

cd $env:ORACLE_HOME
Github repository scripts-and-utilities, path: /orahome.ps1

See also

Other scripts

Index