Test command - Two square brackets


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Test command - Two square brackets
# 1  
Old 11-27-2009
Test command - Two square brackets

Hello,
Can someone please explain to me the following line,
[[ -z $(echo $c | tr -d "\015") ]] && break

I do not understand why two test square brackets are used.

Thanks,
Shantanu

---------- Post updated at 03:38 PM ---------- Previous update was at 03:35 PM ----------

And, also why there's a $ before (echo $c | tr -d "\015")
Thanks,
Shantanu
# 2  
Old 11-27-2009
There may be other differences, but as far as I know [[ ... ]] is the same as [ ... ] except [[ ... ]] does not allow wildcard expansion.

The result of the command inside $( ) will be tested.
# 3  
Old 11-27-2009
Thanks Jsmithstl,
But, $ is used for variable subsitution. How is the use of $ in this expression related to that? Could you please explain more?

Thanks,
Shantanu
# 4  
Old 11-27-2009
[[ -z $(echo $c | tr -d "\015") ]] && break

The line means ..
echo $c
--> Just echo value of variable c

echo $c | tr -d "\015
--> value of variable c should if it contains special character "\015" it is something like line feed then delete it (Tr = translate )

$(echo $c | tr -d "\015")
---> Now this become a variable ... So suppose I say check if $VAR is good or I can put $(SOMETHING) then SOMETHING will be evaluated.


[[ -z $(echo $c | tr -d "\015") ]]
--> This is more like if [ SOME CONDITION ] then kind of ... shortcut .. Usually if people like to keep their job and dont want to loose to junior people ... Just kidding Smilie
--> So if you check what does -z mean from internet it says
-z = string is null, that is, has zero length
So What we have check if the result of evaluated variable is null or not ..

Now to the last part ..

[[ -z $(echo $c | tr -d "\015") ]] && break

--> && mean Anding .. Logical and .. or read in this case as THEN for if .. so it will break if condition in the if test is true ..
Now break is means break some loop and get out ... So this might be inside some loop ... Also you can have your own function here called ..

Added this
|| -> ORing if you want else part also ..

If you need more command to be excuted in then and also in OR ... you can write ..

[[ -z ... ]] && ( SOME COMMAND ) || ( SOME OTHER COMMANDS)


You can also write above as
VAR=$(echo $c | tr -d "\015")
if [ -z $VAR ];
then
break
fi

Please Note: all the above is true BASH scripting only ...
# 5  
Old 11-27-2009
Quote:
Originally Posted by Shan_u2005
Hello,
Can someone please explain to me the following line,
[[ -z $(echo $c | tr -d "\015") ]] && break

I do not understand why two test square brackets are used.

For most recent shells [ is a builtin command (it's a synonym for the "test" builtin).
Some shells like ksh93, zsh and bash support the shell keyword [[ which is supposed to be an enhanced version of the test command:
it supports a more friendly syntax for expressions with logical relations via the && and || operators, the variables inside are not subject to word splitting and pathname expansion (a.k.a. globbing) etc.

As far as the above example is concerned the command substitution $(command[s]) should be quoted if you use the test builtin command instead of the [[ ... ]] compound command.

Quote:
And, also why there's a $ before (echo $c | tr -d "\015")
$() is the newer supported by POSIX syntax for command substitution (the older one `...` is harder to read and less conducive to nesting).
# 6  
Old 11-27-2009
Thanks all
Shantanu
 
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

Double square brackets question

Hi, I just came across an interesting shell script syntax like the one below: ] && (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 ] && is the hazy part. Generally we use an... (2 Replies)
Discussion started by: King Nothing
2 Replies

8. 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

9. 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

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