Help with IF Condition Syntax


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with IF Condition Syntax
# 1  
Old 01-24-2011
Help with IF Condition Syntax

Hi. I expect the following unix script command to return 8:

ls -ltr dropez* | grep -c dropez

I can't seem to find the correct syntax (borne shell), can anyone help be to write an IF condition something like this:

IF (ls -ltr dropez* | grep -c dropez) = 8 THEN
...do stuff
ELSE
...do other stuff
END IF
# 2  
Old 01-24-2011
Code:
#!/bin/sh

if [ `ls -ltr dropez* | grep -c dropez` -eq 8 ]; then
   do stuff
else
   do other stuff
fi

This User Gave Thanks to vgersh99 For This Post:
# 3  
Old 01-24-2011
Thanks so much for taking the time to help. Much appreciated.

Quote:
Originally Posted by vgersh99
Code:
#!/bin/sh

if [ `ls -ltr dropez* | grep -c dropez` -eq 8 ]; then
   do stuff
else
   do other stuff
fi

# 4  
Old 01-25-2011
#!/bin/ksh
CHECKFOUND=`ls -ltr dropez* | grep -c dropez`
if [[ ${CHECKFOUND} -eq "8" ]]
then
do stuff
else
do other stuff
fi

this solution is very similar, but In this way, you have available the counter "${CHECKFOUND}"
# 5  
Old 01-25-2011
Code:
if ( set -- dropez*; [ $# -eq 8 ] ); then
  ..do stuff
else
  ..do other stuff 
fi

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

If condition giving syntax error. Need help.

Hi, I have an if condition on executing it is giving syntax error as below: -------------------------------------------------------------------------------------- line 61: syntax error in conditional expression ./play_test.sh: line 61: syntax error near `]' ./play_test.sh: line 61: ` if... (2 Replies)
Discussion started by: ramki067
2 Replies

2. UNIX for Dummies Questions & Answers

IF [ condition ] help

Hi all Unix newbie - please be gentle Am modifying an existing script to error trap a variable with a length of 0 #!/bin/bash ipfile='/var/data/bin/ipaddress' ] && ipold="$(< "$ipfile" )" ipnew="$( wget -q -O - checkip.dyndns.org | sed -e 's/.*Current IP Address: //;s/<.*$//' )" #... (6 Replies)
Discussion started by: CRChamberlain
6 Replies

3. Shell Programming and Scripting

If condition return 0 even when it fails to satisfy te condition

HI My doubt may be basic one but I need to get it clarified.. When i use "if" condition that checks for many AND, OR logical conditions like if ]; then return 0 fi Even the if condition fails it returns as zero.. Any clue.. But if i add else condition like if ]; ... (2 Replies)
Discussion started by: Priya Amaresh
2 Replies

4. Shell Programming and Scripting

redirect stdout echo command in condition A run in condition B

hi, I have some problems in my simple script about the redirect echo stdout command inside a condition. Why is the echo command inside the elif still execute in the else command Here are my simple script After check on the two diff output the echo stdout redirect is present in two diff... (3 Replies)
Discussion started by: jao_madn
3 Replies

5. Shell Programming and Scripting

if condition -What will do

if then rm -f * fi In this loop plz let me know what will do this condition. if (1 Reply)
Discussion started by: chakkaravarthy
1 Replies

6. Shell Programming and Scripting

syntax of if condition in ksh is wrong

The syntax of 'if' conditionals in bash and ksh seems different. I am trying to check for a particular version using 'if' in ksh. This very simple syntax gives syntax error. I have tried many variants, but no go. Please correct the syntax. Later I will expand it to 'if' and 'else'. #!/bin/ksh... (8 Replies)
Discussion started by: nivedhitha
8 Replies

7. HP-UX

Difference between [condition] and [[condition]] and ((condition)) when used with if condition

Executed the following if conditions .. and got different results . only (( )) gave correct o/p with all scenarios . Can anybody please let me know what is the difference between and ] and ((condition)) when used with if condition. And why each condition gave different result. 1.... (2 Replies)
Discussion started by: soumyabubun
2 Replies

8. Shell Programming and Scripting

If Condition

Hi, I am trying to execute this command, but is it not working, says "`;' unexpected" eval $lgrep $SAM_CMD ; if ; then ; echo "No Error" ; fi What i want is, return the command output, if it is non zero, say "No Error". Thanks, John. (21 Replies)
Discussion started by: john_prince
21 Replies

9. Shell Programming and Scripting

syntax of "if" condition

hi, I have to send mail twice a day,so I have tried with the following syntax, but its not working for me if || ; then mailx -r Sg@org.com -s "INFO" si@org.com <$File Please suggest me the correct syntax of if condtion. (1 Reply)
Discussion started by: chinnu01
1 Replies

10. UNIX for Dummies Questions & Answers

if condition

Can i have following if condition if then else statements execute fi (1 Reply)
Discussion started by: mahabunta
1 Replies
Login or Register to Ask a Question