Difference in Shell Scripts


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Difference in Shell Scripts
# 1  
Old 04-26-2005
Difference in Shell Scripts

Hi,

Is anyone can help me to find out the difference in Shell Scripts between HP and Sun.

Thanks in advance,
Vijay R
# 2  
Old 04-26-2005
should not be any differences except for some of the commands.

Check your current shell in both shells if you are facing any problem.
Shells make some differnce.
# 3  
Old 04-26-2005
I can tell you that in ksh there are some minor differences between Sun and HP-UX.

On Sun you will have no problem doing:
Code:
if [ -z $VAR ]

but on HP-UX you will have to put double quotes around $VAR.

Also when doing a string comparison, on Sun you can do
Code:
if [ "${ErrorOccurred}" == "Y" ]

but on HP-UX, you can't have the double equals.


There are probably more, but those are a couple I can think of off the top of my head.
# 4  
Old 04-27-2005
Quote:
Originally Posted by dangral
I can tell you that in ksh there are some minor differences between Sun and HP-UX.

On Sun you will have no problem doing:
Code:
if [ -z $VAR ]

but on HP-UX you will have to put double quotes around $VAR.

Also when doing a string comparison, on Sun you can do
Code:
if [ "${ErrorOccurred}" == "Y" ]

but on HP-UX, you can't have the double equals.


There are probably more, but those are a couple I can think of off the top of my head.
if you stick to having double quotes around variables and using only 1 "=" sign for shell tests, you will not notice any difference on the shell scripts aside from the OS-specific external commands ... if you want a portable script that does the same thing on different platforms, have the script check for the OS and then put in the OS-specific command lines as required ...
Code:
OS=`uname`
case $OS in
SunOS)  admintool ;;
AIX)    smit ;;
*)      echo "etcetera, etcetera, etcetera..." ;;
esac

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Understanding the difference between individual BASH login scripts

Hello... and thanks in advance for reading this or offering me any assistance I'm trying to understand specific differences between the various login scripts... I understand the differences between interactive vs non-interactive and login vs non-login shells... and that's not where my question... (4 Replies)
Discussion started by: bodisha
4 Replies

2. Shell Programming and Scripting

Difference between kshell and bash shell scripts Example cited

Hi All, I need some urgent help regarding some info. I have a cluster of servers for which I have two scripts for management. control.sh is a bash script meant for restarting/stopping the servers. manger.ksh is a kshell script. It is a master script to manage restarting/stoppping and... (3 Replies)
Discussion started by: ankur328
3 Replies

3. UNIX for Dummies Questions & Answers

Difference between using Here document and Expect in scripts

Hi, I am confused between using here document and using expect for writing interactive shell scripts(like changing password ,FTP or doing su). My questions are : 1)Why here documents cant change password from shell script. 2)Why we need to use expect for same? 3) Can Sourcing a script can do... (2 Replies)
Discussion started by: kailash19
2 Replies

4. Shell Programming and Scripting

Execution difference in perl scripts for windows / AIX

Hi, I have perl script abc.pl which runs perfectly fine on windows ( execution from cmd). Now i tried to execute the same perl module on the AIX server after defining the captureoutput.pm and other relevant changes. But its behaving very weirdly as a portion of the URL which is formed by... (3 Replies)
Discussion started by: slayer0611
3 Replies

5. Shell Programming and Scripting

calling 'n' number of shell scripts based on dependency in one shell script.

Hello gurus, I have three korn shell script 3.1, 3.2, 3.3. I would like to call three shell script in one shell script. i m looking for something like this call 3.1; If 3.1 = "complete" then call 3.2; if 3.2 = ''COMPlete" then call 3.3; else exit The... (1 Reply)
Discussion started by: shashi369
1 Replies

6. Shell Programming and Scripting

Difference between calling the sub scripts

What is the difference between calling the sub scripts of below two line. /home/scripts/devdb.sh . /home/scripts/devdb.sh sh /home/scripts/devdb.sh We are using the suse 2.0 version (4 Replies)
Discussion started by: kingganesh04
4 Replies

7. Solaris

difference in calling shell scripts

Hi I am getting some errors when i am running the shell script using the following syntax: >abc.sh but the same script works fine with the following syntax: >sh abc.sh wats the difference in both....please help thanks in advance. (6 Replies)
Discussion started by: arpit_narula
6 Replies

8. Shell Programming and Scripting

Is there any difference in bash shell in [ .. ] and [[ .. ]] ?

Could someone tell me if there is any difference in using square brackets single or doubled pair? So, do those two some how could be treted by shell differently: if ; then <statements;> else <statements;> fi and if ] ; then <statements;> else <statements;> fi Maybe any one could... (5 Replies)
Discussion started by: alex_5161
5 Replies

9. UNIX for Dummies Questions & Answers

Difference between executing a shell using sh and .

Is there any difference in executing the shell using sh and . and ./. I had a shell script and i observed that anyone is ale to execute the script eith sh even without having the execute permission.how is so? (2 Replies)
Discussion started by: soumyo_das
2 Replies

10. AIX

Difference between writing Unix Shell script and AIX Shell Scripts

Hi, Please give me the detailed Differences between writing Unix Shell script and AIX Shell Scripts. Thanks in advance..... (0 Replies)
Discussion started by: haroonec
0 Replies
Login or Register to Ask a Question