Sponsored Content
Full Discussion: if/elif help
Homework and Emergencies Homework & Coursework Questions if/elif help Post 302534297 by Corona688 on Monday 27th of June 2011 11:09:30 AM
Old 06-27-2011
Quote:
Originally Posted by ctsgnb
Code:
myvar2=$(( $age + $year ))

... but if you don't use $myvar2 anywhere else in your script, then calculating it is useless .
$ inside a (( )) block is redundant. So are mathematical assignments outside it.

Code:
((myvar2=age+year))

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

If..elif..else...fi

Hi all, I got some problems on executing the following scripts. Scripts: if ]; then echo "M${str}O 0 1" >> ${tempFile} elif ]; then echo "M${str}O 1 0" >> ${tempFile} else echo "M${str}O 0 0" >> ${tempFile} fi Error: "`;' is not expected." what's the problem? (2 Replies)
Discussion started by: Rock
2 Replies

2. UNIX for Dummies Questions & Answers

Help with ELIF statement

I am receiving an elif error on line 13 and I can not figure out the reasoning behind it. I have added the then statement that I was initially missing. Any help would be great. #The purpose of this script is for the end user to be able to enter a positive number #User enters a number NUM=$1... (4 Replies)
Discussion started by: Brewer27
4 Replies

3. Shell Programming and Scripting

Query on If-Elif!!

Script Gurus, Need your help in getting this script to come out of logical error : I have pasted the script below: This script finds disk utilzation ... the script is written for both AIX and SUN OS... and option will be given in the initial to select DB or Non DB... its required for my prj...... (1 Reply)
Discussion started by: vangalli
1 Replies

4. Shell Programming and Scripting

If -elif-else error.

I am getting below error from this code (which is at line 24): if ] #this is line24 in code then mv $File_source_path/$File_name $File_name'_'`date '+%d%m%y'` Error: line 24: Any help with the syntax. I am putting 2 condition with 'AND' clause. This is bash shell. (2 Replies)
Discussion started by: amit.mathur08
2 Replies

5. Shell Programming and Scripting

If, elif, else statements help

I am in need of some help. I am not an advance scripter or programmer, I have novice knowledge. I cannot get a script to work as expected. The script basically does an FTP (which I have work perfectly) and writes to a log. However, I want the script to echo "Not Connected" if the FTP fails to... (2 Replies)
Discussion started by: anthonyon
2 Replies

6. Shell Programming and Scripting

elif if not expected

Hi All, I write an script will have some functions... I am getting elif not expected error.. Even tried by using set -x for debug but no use.. Could you please help me out in this Variables .... .... .... TEST_SRC() { cat ${filesrc} >> ${filetgt} if ]; then echo... (12 Replies)
Discussion started by: kmsekhar
12 Replies

7. Shell Programming and Scripting

While-read and if-elif

Hi there, new to this forum and I recently encounter this problem: I tried to use if-elif loop in a while-read loop, something like this: #!/bin/bash while read myline1 myline2 do if ; then echo "Successful!" elif ; then echo "Failed" fi done < $1 Input file looks like this: 200... (13 Replies)
Discussion started by: kennethtls
13 Replies

8. UNIX for Advanced & Expert Users

if else elif

Hi all,i have configured the following script to check if the file exists or not, #!/bin/sh sleep 30 { FILEFULL=$1`date +$2`* if ; then echo $FILEFULL exist else echo "$FILEFULL File not Found" | mail -s 'server' myaccount@mydomain.com fi } but i have a problem, i need to... (2 Replies)
Discussion started by: charli1
2 Replies

9. Shell Programming and Scripting

If / elif

Hello all, I have a scenario where I take user input values and accordingly take actions say I run a script with sh scriptname -x GB -e txt (txt can also be text) I have used if clause for the first input (-x GB)and it is working fine Now for second the scenario is if then echo... (3 Replies)
Discussion started by: nnani
3 Replies

10. Shell Programming and Scripting

Problem with elif and else

Hello experts, I am having problems with ELIF. Please see the below code : read a; read b; read c; if || || ; then echo "EQUILATERAL" elif || || ; then echo "SCALENE" else echo "ISOSCELES" fi This code works fine for the EQUILATERAL case but fails completely for the... (5 Replies)
Discussion started by: H squared
5 Replies
HTML::Template::Compiled::Reference(3pm)		User Contributed Perl Documentation		  HTML::Template::Compiled::Reference(3pm)

NAME
HTML::Template::Compiled::Reference - A quick reference for HTML::Template::Compiled syntax TAGSTYLES
<TMPL_IF var><TMPL_VAR foo></tmpl_if var> <!-- TMPL_IF var --><!-- TMPL_VAR foo --><!-- /tmpl_if var --> <%if var %><%= foo %><%/if var %> Optional tagstyle 'tt': [%if var %][%= foo %][%/if var %] ACCESSING VARIABLES
<%= _.foo %> outputs foo in the cuurent position of the stash and is the same as <%= foo %> <%= .config.url %> goes to root of parameter stash; like $params->{config}->{url} <%= ..foo %> goes one level up in stash <%= list[3].keyname.method %> acts like: $stash->[3]->{keyname}->method TAGS
VAR <%var foo%> or <%= foo%> IF, IF_DEFINED, UNLESS, ELSIF, ELSE conditions like in Perl LOOP, WHILE, EACH for-loop and while-loop like in Perl. <%loop cds%><%= __counter__%>. Title: <%= _.title%><%/loop cds%> <%loop cds join=", " %><%= _.title%><%/loop cds%> <%while resultset.next%><%= __counter__%>. <%= _.foo %><%/while %> <%each hashref%><%= __key__ %>=<%= __value__ %><%/each %> (sorted alphanumeric) <%each hashref sort=alpha %><%= __key__ %>=<%= __value__ %><%/each %> (sorted alphanumeric) <%each hashref sort=num %><%= __key__ %>=<%= __value__ %><%/each %> (sorted numeric) <%each hashref sort=0 %><%= __key__ %>=<%= __value__ %><%/each %> (not sorted) WITH <%with cds[0].artist.fanclub%><%= _.address%><%= _.homepage%><%/with %> INCLUDE, INCLUDE_VAR <%include template.htc%> <%include_var param_with_template_name%> COMMENT, VERBATIM, NOPARSE <%comment explanation %> This will not appear in the rendered template. blah blah... <%/comment explanation %> SWITCH, CASE <%switch .config.language%> <%case de%>Hallo <%case es%>Hola <%case en,default%>Hello <%/switch .config.language%> PERL See section Perl in HTML::Template::Compiled ATTRIBUTES
Each attribute can be written as attribute=foo attribute="some thing" attribute='some "thing"' NAME You can omit the 'name=' here. <%if var%>var<%elsif name=var2%>var4<%/if%> Can be used in all tags. ESCAPE <%= message escape=html %> <%= params escape=url %> <%= params escape=js %> <%= some_var escape=dump|html%> Can be used in "VAR"-tags. DEFAULT <%= this.var.might_be_undef default="my fault" %> Can be used in "VAR"-tags. ALIAS <%loop cds alias="cd" %><%= cd.title %><%/loop cds %> Can be used in "LOOP" and "WHILE". Works like "SET_VAR" and is short for <%loop cds %><%set_var cd value=_ %><%= cd.title %><%/loop cds %> Useful for nested loops. SET_VAR <%set_var myvar value=.another.var %> <%set_var myvar2 expr="60 * 60 * 24" %> This creates a variable similar to local() in perl. To use such a var or an alias in includes, you must use "USE_VARS" in the include. USE_VARS <!-- recognize myvar and myvar2 as variables not parameter stash --> <%use_vars myvar,myvar2 %> myvar: <%= myvar %> JOIN <%loop cds join=", " %><%= _.title%><%/loop cds%> can be used in "LOOP" BREAK <%loop cds break="3" %> <%= _.title%><%if __break__ %> </%if %> <%/loop cds%> Sets "__break__" to 1 every xth loop. Can be used in "LOOP", "WHILE" and "EACH" OPTIONS
(loop)_context_vars <%= __index__ %> the current loop index starting at 0 <%= __counter__ %> the current loop index starting at 1 <%= __first__ %> true if first iteration <%= __last__ %> true if last iteration <%= __odd__ %> true if __counter__ is odd <%= __inner__ %> true if not last or first iteration <%= __key__ %> the key of an EACH iteration <%= __value__ %> the value of an EACH iteration <%= __break__ %> see L<"BREAK"> above <%= __filename__ %> filename of current template (since 0.91_001) <%= __filenameshort__ %> short filename of current template (since 0.91_001) perl v5.14.2 2012-05-26 HTML::Template::Compiled::Reference(3pm)
All times are GMT -4. The time now is 05:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy