#! /bin/ksh # Copyright (C) 1994 Rightsizing, Inc. # # Used by permission, All Rights Reserved # # runksh1 -- Run a sqlplus script as user/pw # file without showing the password in ps. # # Usage: echo "user/pw" | ksh runksh1 scriptname [parameters] read userpw scriptname=$1 shift 1 parameters=$@ sqlplus << INPUT01 $userpw start $scriptname $parameters exit INPUT01