![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to verify Sun Solaris installation | agarwal | SUN Solaris | 3 | 07-03-2008 07:05 PM |
| Verify Hardware installed HP-UX11 | hoffies | HP-UX | 16 | 11-19-2007 04:11 AM |
| Verify Hardware installed on HP-UX 11 | hoffies | UNIX for Dummies Questions & Answers | 1 | 11-12-2007 11:23 AM |
| Just installed Solaris 8 but.... | timresh | UNIX for Dummies Questions & Answers | 4 | 02-05-2005 06:45 PM |
| Solaris (verify 64 or 32 bit | witt | UNIX for Dummies Questions & Answers | 3 | 11-30-2001 12:46 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
how to verify sqlplus not installed on solaris
i want to write shell script that exit by displaying error if sqlplus is not installed.
The platform is oracle10g on solaris sparc. I tried the which sqlplus command, but it returns errorcode 0 even sqlplus is not installed. Kindly help? |
|
||||
|
filename="$ORACLE_HOME/bin/sqlplus"
if [ -s $filename ] then echo "YES. sqlplus available" else echo "NO sqlplus not avail" fi |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|