if statement sytax


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers if statement sytax
# 1  
Old 12-18-2009
if statement sytax

Hello all,

I'm a Unix novice for the most part. I have script running in tcsh (bash from the command prompt).

All I'm trying to do is have the script create a file if need be, and if the file exists, exit the script. Here is the coding:

Code:
tail -50 /home/redlight/usac.log | grep redlight.rpt | grep "`date | cut -c5-10`" > /home/redlight/usac_ok.txt
echo "Script has run the tail statement."
if [ -s /home/redlight/usac_ok.txt ] then
   exit 0
endif

When I run this I get a "if: syntax error". Where is the error in the script?


thanks,

sax2groove2

Last edited by Scott; 12-18-2009 at 05:03 PM.. Reason: Added code tags
# 2  
Old 12-18-2009
You are missing a semi-colon, try

Code:
tail -50 /home/redlight/usac.log | grep redlight.rpt | grep "`date | cut -c5-10`" > /home/redlight/usac_ok.txt
echo "Script has run the tail statement."
if [ -s /home/redlight/usac_ok.txt ]; then
exit 0
endif

I don't know the csh all that well, as I do mostly korn and bash which both use fi instead of endif.
Padow
# 3  
Old 12-18-2009
In bash a simple if then construct would work.

Code:
#!/bin/bash

# set file path here

filepath="/path/to/my/file"

# now check if it exists...

if [[ -e $filepath ]]

    then /bin/echo "$filepath already exists"
 
    else `tail -50 /home/redlight/usac.log | grep redlight.rpt | grep "`date | cut -c5-10`" > /home/redlight/usac_ok.txt`

fi

done


The [[ -e ]] checks if it exists.
# 4  
Old 12-22-2009
thanks everyone. I'm still having problems with the script, but I'm sure these solutions are correct.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Convert Update statement into Insert statement in UNIX using awk, sed....

Hi folks, I have a scenario to convert the update statements into insert statements using shell script (awk, sed...) or in database using regex. I have a bunch of update statements with all columns in a file which I need to convert into insert statements. UPDATE TABLE_A SET COL1=1 WHERE... (0 Replies)
Discussion started by: dev123
0 Replies

2. Shell Programming and Scripting

If statement help

I am new to Unix and have been given the task of modifying a current script. Most of the programming I do is Oracle based, not unix. That being said when I run my current script i get the following (not sure if this is an actual error or if it is just being informative) ./test_cron.s: cdev:... (3 Replies)
Discussion started by: biobill
3 Replies

3. Shell Programming and Scripting

help using if/and/or statement

greetings, the goal below is to test the supplied options/arguments for validity. if the matlab option is not supplied with the additional option of a file then exit. however if matlab IS supplied with its companion option of a file OR batch is the only option then continue on. it's clear the -a... (3 Replies)
Discussion started by: crimso
3 Replies

4. Shell Programming and Scripting

Help with for statement within while statement

I'm trying to do a for statement within a while read line statement and it's not working. What is wrong with this? while read line do find . -type f -name "*.$line*" -exec gunzip {} \; for file in */*.$line*; do grep ERROR "*.$file*" > error.$line.log; done find . -type f -name... (1 Reply)
Discussion started by: bbbngowc
1 Replies

5. UNIX for Dummies Questions & Answers

IF statement

Hi I'm currently writing a script that looks at the contents of a file and returns a value, based on a user input- do cat ~/LAFILE | grep "$SYSTEM" | grep "$USERNAME" if ! grep user /etc/passwd >/dev/null 2>&1 then echo "did not find user" else echo "found user" fi break... (4 Replies)
Discussion started by: Great Uncle Kip
4 Replies

6. Shell Programming and Scripting

How is use sselect statement o/p in insert statement.

Hi All, I am using Unix ksh script. I need to insert values to a table using the o/p from a slelect statement. Can anybody Help! My script looks like tihs. ---`sqlplus -s username/password@SID << EOF set heading off set feedback off set pages 0 insert into ${TB_NAME}_D... (2 Replies)
Discussion started by: nkosaraju
2 Replies

7. UNIX for Dummies Questions & Answers

for loop sytax error

Hello folks, I am relatively new to UNIX shell scripting but I have just written this small for loop script below: var="100 300" for ctr in ${var} do echo "$ctr --- $var" done exit 0 But when I am running the script I am getting the error below: ' unexpected: syntax error at line 4 :... (3 Replies)
Discussion started by: Rajat
3 Replies

8. Shell Programming and Scripting

If statement - How to write a null statement

In my ksh script, if the conditions of a if statement are true, then do nothing; otherwise, execute some commands. How do I write the "do nothing" statement in the following example? Example: if (( "$x"="1" && "$y"="a" && "$z"="happy" )) then do nothing else command command fi... (3 Replies)
Discussion started by: april
3 Replies

9. UNIX for Advanced & Expert Users

IF statement on a df -g

Im running reports on a unix box. i run df -g and get the disk usage results, what i want to do is hopefully run an if statement or of the sort to highlight any percentages over 80 %. I also would like to run an errpt and also highlight any errors for the current days date. Could the results... (1 Reply)
Discussion started by: hassanj
1 Replies

10. HP-UX

Network configuration sytax

I'm adding additional route on hpux 11.22 and syntax seems to be wrong to me. However the application works and everything else. Old systax in netconf file. LANCONFIG_ARGS=ether ROUTE_GATEWAY=xxx.xx.xx.xx ROUTE_COUNT=1 ROUTE_DESTINATION=default Note: There are no double Quotations? is this... (0 Replies)
Discussion started by: catwomen
0 Replies
Login or Register to Ask a Question