complex if statement syntax without using 'if ..' keyword in ksh.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting complex if statement syntax without using 'if ..' keyword in ksh.
# 1  
Old 03-14-2011
complex if statement syntax without using 'if ..' keyword in ksh.

It saves me lot of typing and space/lines when I do not use full 'if' keyword and construct, instead use ..
Code:
[ <condition> ] && <statement> || <statement>

that perfectly replaces..
Code:
if [ <condition> ]; then
<statement>
else
<statement>
fi

Can I use following syntax when I want to add multiple statements under 'if' or 'else' conditions? or does it have any down side to it compared to traditional 'if' 'else' construct?

Code:
[ <condition> ] && ( <statement1>; <statement2>) || <statement>


Last edited by Franklin52; 03-16-2011 at 06:31 AM.. Reason: Please use code tags
# 2  
Old 03-14-2011
Absolutely - I tend to use this syntax a lot (note the braces run the command in the current shell instead of a subshell):
Code:
[[ condition ]] && { blah1; } || { blah2; }

You can easily continue on multiple lines:
Code:
[[ condition && other_condition ]] && {
     everything_looks_good
    } || {
     uh_oh_spaghettios
     print_usage
}

# 3  
Old 03-14-2011
if you want to put more than one command in such a command style,you should use brace curly---{},NOT ().The latter means execute these commands in a subshell.Look:
Code:
[ true ] && ( echo "yes,you can use it";echo $BASH_SUBSHELL;)

and this one
Code:
[ true ] && { echo "yes,you can use it";echo $BASH_SUBSHELL;}

# 4  
Old 03-14-2011
Quote:
Originally Posted by kchinnam
[ <condition> ] && <statement> || <statement>

that perfectly replaces..

if [ <condition> ]; then
<statement>
else
<statement>
fi
This is not quite true. The program flow depends on the exit code of the statement between '&&' and '||'. For example:

Code:
bash-3.00$ true && { echo 1; false; } || echo 2
1
2

If you were right, then only "1" should be printed, but as you can see, both echo statements are being executed. Whereas this executes as expected:

Code:
bash-3.00$ if true
> then
> echo 1
> false
> else
> echo 2
> fi
1

---------- Post updated at 10:24 ---------- Previous update was at 10:18 ----------

The reason is that the whole expression is evaluated as a logical expression:

Code:
A AND B OR C

If A is true, then B is evaluated. And if B is false, then the expression (A AND B) is false. Which leads to the evaluation of C. The value of the whole expression is then the value of C (true or false)

If (A AND B) is true, then value of the whole expression is true and it is not necessary to evaluate C.
These 2 Users Gave Thanks to hergp For This Post:
# 5  
Old 03-15-2011
Thaks hergp, that is what I am looking for.. I was wondering what makes my code fail, now I found answer for it.

Short-cut syntax for 'if' construct is really very un-safe and does not replace standard structure. God forbid a un-expected issue makes your last statement in if condition fail, it would cause control go into else part. If its doing a critical work in Production, you will go nuts as to what hit this logic :-)!

Does any one dispute my conclusions? If not stop using short-cut 'if' construct in business critical programs..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Syntax for if statement

I'm new to unix and the command line and am trying to learn different commands. I have a file (teledir.txt) that contains a name and phone number for 3 different people. I am writing a script that is to take two positional parameters and I typed out how it should behave: if <name and number... (1 Reply)
Discussion started by: Eric7giants
1 Replies

2. Shell Programming and Scripting

[ksh] finding last file with keyword in it

Hi, In short : I have several log files and I need to find the last file with a certain keyword in it. # ls -1tr logs log_hostX.Jan01_0100.gz log_hostX.Jan01_0105.gz log_hostX.Jan01_0110.gz log_hostX.Jan01_0115.gz log_hostX.Jan01_0120.gz log_hostX.Jan01_0125.gz log_hostX.Jan01_0130.gz... (2 Replies)
Discussion started by: ejdv
2 Replies

3. Shell Programming and Scripting

Help with if statement syntax

Hi, Is there a way to compare the value in if condition with a list of values. eg . if ] then echo "it's a mammal" else echo "its not" fi Thanks! (8 Replies)
Discussion started by: neil.k
8 Replies

4. UNIX for Advanced & Expert Users

Help with complex find syntax

I need to modify the find command below to exclude the output of the directory /usr/UDPM/PerfMgmt/shmlck find / \( -fstype ctfs -o -fstype mntfs -o -fstype objfs -o -fstype proc -o ! local \) -prune -o -type f -perm -0002 -print 2>/dev/null I have tried many iterations and placement of... (2 Replies)
Discussion started by: interesting?
2 Replies

5. Shell Programming and Scripting

A complex sed statement

I have following requirement. Say, my text file contains following patterns {2010501005|XXGpvertex|9|0|17|0|{|{30100001|XXparameter_set|@@@@{{30001002|XXparameter|!prototype_path|$AB_COMPONENTS/Sort/Sort.mpc|3|2|Pf$|@{0|}} }}@0|@315000|78500|335000|99000|114000|87000|17|And the Sort|Ab... (8 Replies)
Discussion started by: Shell_Learner
8 Replies

6. UNIX for Dummies Questions & Answers

Complex If statement

can anyone please explain my below statement, i am confused. if || \ || \ || \ || then (1 Reply)
Discussion started by: kd09714
1 Replies

7. UNIX for Dummies Questions & Answers

if statement code syntax

Hi, can someone please tell me what is wrong with this code? I just want it to check if the file size is greater than 2000kb. if Thanks! ---------- Post updated at 09:23 PM ---------- Previous update was at 09:21 PM ---------- I should probably post the full code: #!/bin/sh... (9 Replies)
Discussion started by: Bengel
9 Replies

8. Shell Programming and Scripting

perl : semi complex if statement question

Hi there I am trying to write an if statement in perl that will return "SUCCESS" if either of these conditions are true a) if $changes is greater than 5 AND the $force flag is set to 1 OR b) if $changes is greater than 0 AND $changes is less than 6 #!/usr/bin/perl -w my $force =... (5 Replies)
Discussion started by: rethink
5 Replies

9. Shell Programming and Scripting

syntax error on if statement

Hi, Can you please help me with this one: I write an "if" statement, something like this: if then echo "big file" else echo "normal file" and I get an error: `'then is not expected Thanks in advance (6 Replies)
Discussion started by: apenkov
6 Replies

10. Shell Programming and Scripting

Confirming Syntax - IF statement.

Hi All, Has been a while since I was last on, so I hope everyone has been doing fine. ;) Would like to know if the below IF statement syntax is correct for a ksh environment. It's been pushed into live as someone had deleted the development copy(!); not withstanding that, the statement now... (3 Replies)
Discussion started by: Cameron
3 Replies
Login or Register to Ask a Question