Sponsored Content
Full Discussion: if statement sytax
Top Forums UNIX for Dummies Questions & Answers if statement sytax Post 302381517 by Padow on Friday 18th of December 2009 02:03:31 PM
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
 

10 More Discussions You Might Find Interesting

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

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

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

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

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

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

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

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

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

10. 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
RBASH(1)						      General Commands Manual							  RBASH(1)

NAME
rbash - restricted bash, see bash(1) RESTRICTED SHELL
If bash is started with the name rbash, or the -r option is supplied at invocation, the shell becomes restricted. A restricted shell is used to set up an environment more controlled than the standard shell. It behaves identically to bash with the exception that the follow- ing are disallowed or not performed: o changing directories with cd o setting or unsetting the values of SHELL, PATH, ENV, or BASH_ENV o specifying command names containing / o specifying a file name containing a / as an argument to the . builtin command o specifying a filename containing a slash as an argument to the -p option to the hash builtin command o importing function definitions from the shell environment at startup o parsing the value of SHELLOPTS from the shell environment at startup o redirecting output using the >, >|, <>, >&, &>, and >> redirection operators o using the exec builtin command to replace the shell with another command o adding or deleting builtin commands with the -f and -d options to the enable builtin command o using the enable builtin command to enable disabled shell builtins o specifying the -p option to the command builtin command o turning off restricted mode with set +r or set +o restricted. These restrictions are enforced after any startup files are read. When a command that is found to be a shell script is executed, rbash turns off any restrictions in the shell spawned to execute the script. SEE ALSO
bash(1) GNU Bash-4.0 2004 Apr 20 RBASH(1)
All times are GMT -4. The time now is 10:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy