If statement is not working in KSH


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting If statement is not working in KSH
# 15  
Old 02-09-2011
Quote:
Originally Posted by Scrutinizer
How about dash which is the standard shell (/bin/sh) on Ubuntu ? It is not old but it does not support [[ ]]
It's nonstandard in many ways, the 'read' command doesn't work right in some situations. Besides, it's not a ksh variant. pdksh seems to be a ksh88 variant, but this guy's shell, whatever it is, might be even older yet..!
# 16  
Old 02-09-2011
Quote:
Originally Posted by Corona688
[[ ]] is necessary for glob-style matching comparison, and he specifically mentioned having ksh...

It is not necesssary for glob-style matching. A case statement works in all shells.
---------- Post updated at 01:13 PM ---------- Previous update was at 01:09 PM ----------

Quote:
Originally Posted by Corona688
It's nonstandard in many ways, the 'read' command doesn't work right in some situations.

The dash shell is probably the most POSIX-compliant (i.e., the most standard) shell there is, with the fewest extensions.

In what situations does the read command not work correctly?
# 17  
Old 02-09-2011
The [[ builtin is a kornism and bashism with better-defined semantics than [ (a.k.a. test). If you want your script to be portable as in work with all POSIX-conformant shell script interpreters, you should use the more limited [.

As regards dash and POSIX conformance, according to the current manpage for dash:
Quote:
The current version of dash is in the process of being changed to conform with the
POSIX 1003.2 and 1003.2a specifications for the shell.
Unlike a number of other shells, I do not believe that dash has passed the VSC-PCTS2003 POSIX Certification Test Suite.
It is easy to claim POSIX conformance but a testsuite is the only valid indicator of conformance.
# 18  
Old 02-09-2011
In ksh the bracket type is significant and important. It distinguishes between a "Test" and a "Conditional Expression". There is some common syntax but as soon as you get into boolean expressions they are quite different.

Code:
[[ conditional expression ]]
[ test ]

# 19  
Old 02-09-2011
Quote:
Originally Posted by methyl
In ksh the bracket type is significant and important. It distinguishes between a "Test" and a "Conditional Expression". There is some common syntax but as soon as you get into boolean expressions they are quite different.

Code:
[[ conditional expression ]]
[ test ]


Please tell me what can be done with [[ ... ]] that cannot be done with [ ... ] or case.
# 20  
Old 02-09-2011
ERE matching in modern bash/ksh93:
Code:
if [[ "a.3.578.yyy" =~ .\.[0-9]\..*y+ ]]; then
  echo hello
fi

# 21  
Old 02-09-2011
@cfajohnson I sort of agree. If you only work in modern "Posix" so called "standard" Shells there is really no need for "[[ condition ]]" syntax because of the enhancements to Shell. I work with new, old and ancient Shell scripts and it is imperative that I can read, understand and change scripts in the context of the "Shell of the day".

Last edited by methyl; 02-09-2011 at 06:50 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

If Not Diff statement in ksh 88

Hi I tried the below code where it is working properly #!/bin/ksh set -x date1_data=abc.txt date2_data=bcd.txt if diff $date1_data $date2_data >/dev/null ; then echo "Equal" else echo "Not Equal" fi Then I tried like below where i want to use only if fi not else part ... (3 Replies)
Discussion started by: smile689
3 Replies

2. Shell Programming and Scripting

KSH If statement.

How can I search get if to pinpoint 1 word in a line and have it do something for me? example: KEY1="<< Response ... Total of 2 >> Sun Jun 19 15:30:18 2011 Tx Power Level is 27.7 Bm ~ " if ]; then command; else error; fi Thats just a quick sample. I want my if statement to se the... (5 Replies)
Discussion started by: 82280zx
5 Replies

3. Shell Programming and Scripting

If statement is not working.

Hi. With the help of this group I have created a shell script to find the factorial of a number. OK. Then I got wild.;) I tried to put in a check to make sure the entry is a number. read num If )) then echo "This is not a valid number. Try again." fi while (( $var <= $num)) more... (5 Replies)
Discussion started by: Ccccc
5 Replies

4. Shell Programming and Scripting

KSH if statement

Hi guys, im new to UNIX so bear with me. would it be possible for me to create an if statement where i can have a key being entered and something happening after that. (bad explanation) eg. If user enters letter 'q' then close window or exit puTTy Thanks in advance (1 Reply)
Discussion started by: robbrad
1 Replies

5. UNIX for Dummies Questions & Answers

until statement not working

im trying to write an until statement which dont go onto the next stage until the user inputs a certain phrase. It is then stored in an array. Ive come up with this code so far but its not working and i dont know why. read in1 until do echo "Incorrect, try again" ... (2 Replies)
Discussion started by: strasner
2 Replies

6. Shell Programming and Scripting

ksh case statement

I am trying to write a ksh script using the case statement to select certain directories to remove. The directories that I am looking for are in the following format 2008-10-10. I want to exclude all other files/directories that contain anything other the 4 digit year,a dash, 2 digit month, a... (2 Replies)
Discussion started by: dgilc
2 Replies

7. Shell Programming and Scripting

how to use if statement in ksh script

Hi, I need to compare two variables using if condition and i am not sure if am right or wrong. My code is like : if then echo "new file" else echo "old file and remove it" fi where both variables contain time : filetime contains the time when a file... (2 Replies)
Discussion started by: manmeet
2 Replies

8. Shell Programming and Scripting

If statement not working

I understand this question probably poses some child like stupidity, but I can't get this if statement to work for love or money. #!/bin/ksh echo "Input either 1 or 2" read Num if ; then echo "Message 1" if ; then echo "Message 2" else echo "false" fi $ ksh decisions Input either 1... (6 Replies)
Discussion started by: Hazmeister
6 Replies

9. UNIX for Dummies Questions & Answers

Let statement in ksh HELP

I have: datafile contains 1234567890 >wc -c datafile | awk '{print $1}' >11 The program #!/bin/ksh let n = (wc -c datafile | awk '{print $1}') echo $n I expect n to be 11 but it gives error message. What is wrong with this statement? Thanks! (3 Replies)
Discussion started by: bobo
3 Replies

10. UNIX for Dummies Questions & Answers

if statement in ksh

what is the problem with this comparison in ksh script: if " ] it gives syntx error (3 Replies)
Discussion started by: gfhgfnhhn
3 Replies
Login or Register to Ask a Question