Help with ksh Shell Script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with ksh Shell Script
# 1  
Old 02-02-2012
Question Help with ksh Shell Script

My goal is to create a script that will check if in a test or production environment. I wrote this script to check $host variable to check which server I'm on but this script does not work.

Code:
if [ "$host" == "abc_test" ]
then
       BASE=/home/fmtest; export BASE
else
       BASE=/home/fmprod; export BASE
fi
 
echo $BASE

No matter which server I run this on (Test or Production) it echo's "/home/fmtest"

Last edited by methyl; 02-02-2012 at 01:21 PM.. Reason: please use code tags
# 2  
Old 02-02-2012
Code:
if [ $(hostname) == "abc_test" ]
then  
  BASE=/home/fmtest; export BASE
else
  BASE=/home/fmprod; export BASE
fi

echo $BASE

--ahamed
# 3  
Old 02-02-2012
An if this is actually "ksh", the "==" is invalid: Anyway we always put quotes round a string comparison.

Code:
if [ "$(hostname)" = "abc_test" ]
then  
  BASE=/home/fmtest; export BASE
else
  BASE=/home/fmprod; export BASE
fi

echo $BASE

Worth checking what the output from the hostname command looks like because it should be the full qualified hostname and may be different from uname -n .
This User Gave Thanks to methyl For This Post:
# 4  
Old 02-02-2012
Thank you so much, this is now working as designed!Smilie
# 5  
Old 02-03-2012
Quote:
Originally Posted by methyl
Anyway we always put quotes round a string comparison.
It is not necessary to uses quotes in ksh93 unless you have white spaces in your string. This works as intended:
Code:
if [[ $(hostname) = IISC08 ]]
then
    echo "IISC08"
fi

# 6  
Old 02-03-2012
@fpmurphy
Agreed. It's also not necessary in ksh88. If you omit the quotes you do get a syntax error if any of the variables are empty.
However I'm on a one-man mission to try to get the populus to put quotes round strings because this second only to misuse of "for" in the common scripting errors posted on this board.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with KSH Shell Script

From a shell script I'm trying to remove the first two files of whats returned from the head -2 command so I tried piping it to xargs rm -f but I can't get it to work. How do I remove the files from the head command? ls -al *clit* *servr* |sort -t_ -nk2 | head -2 |xargs rm -f (3 Replies)
Discussion started by: Bperl1967
3 Replies

2. UNIX for Dummies Questions & Answers

How do i lock a ksh shell script?

Hi, I have a ksh shell script that accesses databases to drop and create tables and the script also creates text files. This shell script is accessed thru a java application that i would like to turn multi-user, but the only way that i can do that is if I can figure out a way to lock the shell... (2 Replies)
Discussion started by: ndedhia1
2 Replies

3. Shell Programming and Scripting

Help with ksh shell script

Anyone know how to check a filename that contains a date and compare whiich file is older using a ksh shell script? The filename looks like aaaaa_20110615 (1 Reply)
Discussion started by: Bperl1967
1 Replies

4. Shell Programming and Scripting

Array in Ksh Shell script

hi team, i have a file, which contains only variable and its value param.ksh --------- export A=123 export B=345 export C=567 export D=OPLI export E=OL89PO From shell script, i am invoking this file and use the value of this variable. Now there are 5 variable in above file. Before i... (1 Reply)
Discussion started by: ace_friends22
1 Replies

5. Shell Programming and Scripting

How can I execute another shell from my ksh script?

I am newbie in UNIX, so please excuse me for the stupid question.:) Here is a problem: I created ksh script where the part of the functionality include an opening of a second session with another shell process "runrep"(runrep is a custom reporting shell designed by Advent Geneva). When I run my... (3 Replies)
Discussion started by: alexstar
3 Replies

6. Shell Programming and Scripting

what does this ksh shell script do?

Can someone tell me when the script is called, what does it do? I can't see it is going to run anything. (1 Reply)
Discussion started by: dp100022
1 Replies

7. Shell Programming and Scripting

Help with ksh shell script

I am using /usr/bin/ksh in AIX I am reading the values of $dbname, $dbatmpdir/dbdir.$$, and $scope from a different file All I have to do is check if $dbname exists in file $dbatmpdir/dbdir.$$ and $scope should have a value either 'TABLE' or 'SCHEMA'. When I execute the following code. I am... (3 Replies)
Discussion started by: tenderfoot
3 Replies

8. Shell Programming and Scripting

Awk in ksh shell script - help

Hello, Im a beginner. Im writing a ksh script with awk. Is it possible to assign the output of the awk to a shell variable? Like, shell_variable= awk '$1 == "shell" {abc= $2 }' /tmp/cust_det echo $shell_variable Please excuse my ignorance. Thanks in advance. (4 Replies)
Discussion started by: Nic_writes
4 Replies

9. Shell Programming and Scripting

ssh into a shell script (KSH)

Hi all, Just like to ask if it is possible to do the following: 1. Have a shell script that calls ssh username@destinationhost 2. Upon successful verification, we ssh into the destination host and automatically use ksh to run a shell script that resides in the destination host. (Hopefully no... (8 Replies)
Discussion started by: rockysfr
8 Replies

10. Shell Programming and Scripting

Mailx in shell script (KSH)

Greetings all, I'm pretty new to the use of mailx, having been using mutt most of the time. I'm interested to know how I can use mailx within a shell script to send out a formatted email with the following criterion: 1. My recipient's address is abcdef1000@gmail.com 2. The message body is... (2 Replies)
Discussion started by: rockysfr
2 Replies
Login or Register to Ask a Question