basic scripting syntax


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting basic scripting syntax
# 1  
Old 05-28-2009
basic scripting syntax

In bash scripts please can someone tell me if the below is the correct syntax for comparing integers and strings;

for integers -

Code:
if [ $number1 -gt $number2 ];then

for strings -
Code:
if [ $string1 = $string2 ]; then

Thanks
Calypso
# 2  
Old 05-28-2009

That is almost correct.

Code:
if [ "$string1" = "$string2" ]; then

# 3  
Old 05-28-2009
Thanks for clearing that up
# 4  
Old 05-28-2009
Code:
if [ "$string1" == "$string2" ]; then

# 5  
Old 05-28-2009
Quote:
Originally Posted by devtakh
Code:
if [ "$string1" == "$string2" ]; then


== is not standard:

Code:
[: 3: ==: unexpected operator

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Basic Shell Scripting

Hi All, I am a newbie to shell scripting. I am trying to something like this. #!bin/bash cd /u01/app/oracle/ # then start the process ./opmnctl startall Can someone help me with this requirement. Help is very much appreciated. Thanks Venkat Please use code tags next time for... (10 Replies)
Discussion started by: venkat8439
10 Replies

2. Shell Programming and Scripting

which is the Very basic certification on unix shell scripting?

Hi, I am very new to this forum, can any one tell me which is the very basic certification on unix shell scripting? please give me an advice on this. (1 Reply)
Discussion started by: Manjesh
1 Replies

3. UNIX for Dummies Questions & Answers

Help with basic scripting!

Hey I have to create a unix script that when run uses the 'man' command to print out the command information of commands passed as arguments. I have the basic pseudo code, but I don't know how to implement a loop. Any help is greatly appreciated. Cheers. short-manual <ls cc pwd>... (3 Replies)
Discussion started by: sarovarc
3 Replies

4. Shell Programming and Scripting

Scripting Syntax

I'm new to shell scripting and would like to know what would be the best syntax to delete multiple directories in the same location? This is what I tried but it didn't work. echo "clearing webtop and da cache." su - $TOMCAT_USER -c rm -rf... (5 Replies)
Discussion started by: soupbone38
5 Replies

5. UNIX for Dummies Questions & Answers

basic scripting help

I would like to know: 1. How is `command` used? 2. How is '$command' used? For example, a script file that checks for apache tomcat processes that I created has the following lines: test set suffix=` grep "6.0.18"` set command = `ps -ef $suffix` echo $command //?? hoping this... (2 Replies)
Discussion started by: jon80
2 Replies

6. Shell Programming and Scripting

Basic Shell script syntax help

Hi All, I am new to shell scripting. I have a variable which holds a numeric value.I have to check whether this variable holds a value between(0- 8),(8-17)(17-24).How do i write this syntax using if in shell scripting. Thanks Vignesh (2 Replies)
Discussion started by: vignesh53
2 Replies

7. Shell Programming and Scripting

basic shell scripting question

If I did indeed grep something out of it, why woudln't $result show nothing? When I do $? , it does show success... What is the proper syntax so that $result shows actual thing it's grepping out? result=`(ssh $host tail -1 /something/somethingelse) | egrep -i "value" >dev/null` #echo... (3 Replies)
Discussion started by: convenientstore
3 Replies

8. Shell Programming and Scripting

Shell scripting basic doubt

Hi, I have a script called sam.sh which consists of a single echo statement like this #/usr/bin/ksh echo "Mani" I changed the mode for the script by giving chmod a+x sam.sh. If I want to execute the scrpt by just giving the name at the command line "sam.sh", what should I necessarily do?... (3 Replies)
Discussion started by: sendhilmani123
3 Replies

9. Shell Programming and Scripting

What is a good place to learn basic shell scripting? Thanks!

See the title. Originally wasn't going to type anything but I need a message of at least 10 characters! :cool: (2 Replies)
Discussion started by: deutchap6verse5
2 Replies
Login or Register to Ask a Question