Double square brackets question


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Double square brackets question
# 1  
Old 10-07-2009
Double square brackets question

Hi,
I just came across an interesting shell script syntax like the one below:
Code:
[[ $mode =  "INTERACTIVE" ]] && (trap 'rm -rf ${WORK_DIR}/*.$$; echo "\n\nInterrupted !!\n\n"; exit 4' 1 2 3 15)

Can someone please explain the code snippet above?
The trap command bit is fine but [[ $mode = "INTERACTIVE" ]] && is the hazy part.
Generally we use an if before [[ ]], but it is not being used here!

I was also experimenting with the below code snippet and it seemed to work fine as long as I was not putting #! /usr/bin/ksh at the top of the script.
Code:
[[ `ps -ef | grep Hawkmoon | grep -v grep` ]]

Why is it that it is running sans #! /usr/bin/ksh only?
I am using Solaris 5.8 by the way.
Thanks in advance Smilie.

Last edited by King Nothing; 10-07-2009 at 01:16 PM..
# 2  
Old 10-07-2009
High King Nothing,

man ksh:
Code:
[[ expression ]]
              Evaluates expression and returns a zero exit status when expression is true.  
See Conditional Expressions below, for a description of expression.

Code:
expression1 && expression2
              True, if expression1 and expression2 are both true.

The && construct makes use of the fact that in order to find out whether both expressions are true, first the left side gets evaluated. Because of efficiency the right side only gets evaluated if the left side is true. If the left side is false it does not matter what value the right side evaluates to, so it never gets evaluated. Thus this happens to work out like an if then construction. The end value of the && construct then never gets used. I personally prefer the if then else way of testing conditions since it usually provides cleaner, more legible code.

I don't know why the examples you provide don't work with ksh. They sure work in my ksh (does /usr/bin/ksh exist on your system?). The first example strikes me as strange because of the parentheses, which mean the trap statement is run in a separate environment, so it will never output the statements in the current environment. If you use { .. ;} instead it will work:

Code:
[[ $mode =  "INTERACTIVE" ]] && {trap 'rm -rf ${WORK_DIR}/*.$$; echo "\n\nInterrupted !!\n\n"; exit 4' 1 2 3 15;}

# 3  
Old 10-07-2009
Quote:
Originally Posted by King Nothing
Why is it that it is running sans #! /usr/bin/ksh only?

The double brackets are a non-standard syntax supported only by a few shells. Use single brackets instead; they will work everywhere.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

IF statement with square brackets

Hi All, Hope you all are doing good. Yesterday in my project i came across a scenario which i can not guess why it was working in one region and why it was not in another region. Please find my issue below. I am using AIX version 6.0 of UNIX in my project, in shell scripting i have the... (1 Reply)
Discussion started by: mad man
1 Replies

2. Shell Programming and Scripting

Grep number between Square [] brackets

I wanted to store the number inside the square bracket between colon( : ) and closing suqre bracket(]) in some variable. Suppose I have lines like : Input file : 20140320 00:08:23.846 INFO 84] - anything in line 20140320 00:08:23.846 Test 589] - Virtual and lab lab anything... (18 Replies)
Discussion started by: nes
18 Replies

3. Shell Programming and Scripting

Compare the value in between square brackets in file

I wanted to compare the value inside the Squre bracket after Colon ( : ) based on any value(seperated by or operator | ) inside the variable Thread and if match found then wnated to store in output file Input file : 20140320 00:08:43.918 INO 35] - Corporate hub is 20140320 00:08:43.918... (2 Replies)
Discussion started by: nes
2 Replies

4. UNIX for Dummies Questions & Answers

Single or double square brackets

Hi frieds, I don't understand the difference between single square bracket and double square brackets in a IF condition. Ex. if ; then RETURNJOB=1 else RETURNJOB=0 fi It run, but this if ]; then RETURNJOB=1 else RETURNJOB=0 fi (4 Replies)
Discussion started by: dogshort
4 Replies

5. Shell Programming and Scripting

Delete text between square brackets and also delete those square brackets using sed or awk

Hi All, I have a text file which looks like this: computer programming systems engineering I want to get rid of these square brackets and also the text that is inside these brackets. So that my final text file looks like this: computer programming systems engineering I am using... (3 Replies)
Discussion started by: shoaibjameel123
3 Replies

6. Shell Programming and Scripting

Replacing text between two square brackets

hi guys, i'm writing a script that looks for a unquie id in a file and replaces a string between two square brackets on the same line as the unquie id: ....... ....... 0001 zz 43242 replace this text] name 0002 sd 65466 UK] country ....... ....... how can i find line with id 0001... (6 Replies)
Discussion started by: zaff
6 Replies

7. Shell Programming and Scripting

Use of double square brackets in ksh

Hi First apologies if this has been raised before. I've got the following in a ksh script: if ] For some reason this does not work. But if I remove the double square brackets to: if This works. I thought ksh supported the ]. Or is there more to it? Thanks in advance. (3 Replies)
Discussion started by: tsu3000
3 Replies

8. Shell Programming and Scripting

WHy the double square brackets?

One of the senior administrators gave me a shell script to modify and it begins as follows: if ] && ] {more code follows} Why the double square brackets? (10 Replies)
Discussion started by: mojoman
10 Replies

9. UNIX for Dummies Questions & Answers

why put double square brackets in an if clause?

what is the rationale behind putting double square brackets in an if clause? for e.g. if ] || ] || ]; then echo some fields are null fi (5 Replies)
Discussion started by: napolayan
5 Replies

10. UNIX for Dummies Questions & Answers

square brackets

I would like to substitute a phrase which contains square brackets. change TO how? Thanks (2 Replies)
Discussion started by: gilead29
2 Replies
Login or Register to Ask a Question