Sponsored Content
Full Discussion: 2 or more if conditions
Top Forums UNIX for Dummies Questions & Answers 2 or more if conditions Post 302276998 by Gayucvns on Thursday 15th of January 2009 05:20:50 AM
Old 01-15-2009
Hi dr,

Instead of && use ||.

command1 && command2

This statement is read, if command1 is true (has an exit status of zero) then perform command2.

The || construct will do the opposite:

command1 || command 2


If the exit status of command1 is false (non-zero), command2 will be executed.

awk '{if($2==4 || $9==223) print $0}' test

Thanks
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

multiple if conditions

Guys, Im trying to have a script that evaluates multiple conditions : test.sh: if then echo "host $1" else if then echo "host $1" else echo $1 not valid exit 1 fi when I do ./test.sh brazil1 I get: (4 Replies)
Discussion started by: bashshadow1979
4 Replies

2. Shell Programming and Scripting

conditions

./script 89 The script will extract the last digit of the input parameter. example, that is 4. This will be compared to the last digit of the current day of the month ( like day 14; that is 4). A message will displayed on the screen indicating if the digits are the same or not. (1 Reply)
Discussion started by: singh is king
1 Replies

3. Shell Programming and Scripting

Help regarding multiple conditions

Hi All, I am new to shell scripting. Can any one say what is wrong in this if statement, that uses multiple conditions if then *************** else if ( -z $pcs && "$night_time_calc" > "$night_time" ) then ******************************** ... (4 Replies)
Discussion started by: ssenthilkumar
4 Replies

4. Shell Programming and Scripting

While with three conditions

Currently this is what I am trying while || && ]; do I want to continue if the first condition or both the second and third are true but I am getting a too many arguments error. Can someone help me out? (5 Replies)
Discussion started by: whdr02
5 Replies

5. Shell Programming and Scripting

IF OR with two conditions

I have this IF working fine, testing if a char is a digit: if ; then _VALUE=$_VALUE$_CHAR else _ISDIGIT="false" fi Then I add a second condition to test if the char is either a digit or a * if ]; then _VALUE=$_VALUE$_CHAR ... (11 Replies)
Discussion started by: Flavius
11 Replies

6. Shell Programming and Scripting

If conditions need

Dear Expert, Below code is for to take the backup of database by daily time stamp. I need vital help to make my script automatic sending me email if it sucess or fail. echo on @REM Seamonkey's quick date batch (MMDDYYYY format) @REM Setups %date variable @REM First parses month, day, and... (6 Replies)
Discussion started by: Alone
6 Replies

7. Shell Programming and Scripting

Zenity, While, and Conditions

All, I'm having fighting a losing battle with what I though would be simple. My goal is this: Show a zenity progress or info dialog until the system obtains an ip address, then close the dialog and continue through the rest of the script. Right now I've got the following: ip=`ifconfig |... (2 Replies)
Discussion started by: timbrammer91091
2 Replies

8. Shell Programming and Scripting

Errors in if conditions with to many OR conditions

Hi ALL I have a script where in i need to check for several values in if conditons but when i execute the script it throws error such as "TOO MANY ARGUMENTS" if then msg="BM VAR Issue :: bmaRequestVAR=$bmaRequestVAR , nltBMVAR=$nltBMVAR , bmaResponseVAR=$bmaResponseVAR ,... (10 Replies)
Discussion started by: nikhil jain
10 Replies

9. Shell Programming and Scripting

Errors in if conditions.....

#if if then echo $varNO >> AgriN.csv fi done < data The above script throws error such as integer expression expected. How do i rectify that?? (4 Replies)
Discussion started by: nikhil jain
4 Replies

10. Shell Programming and Scripting

Conditions in if

I'm using the below one.. #!/bin/ksh File=$3 if ; then echo "Script" elif ] ;then echo "Passed k or f option" else "Please check the Input passed" fi Command line argument is "k" or -f and file is exist then... (3 Replies)
Discussion started by: Roozo
3 Replies
HTTP_PERSISTENT_HANDLES_IDENT(3)					 1					  HTTP_PERSISTENT_HANDLES_IDENT(3)

http_persistent_handles_ident - Get/set ident of persistent handles

SYNOPSIS
string http_persistent_handles_ident ([string $ident]) DESCRIPTION
Query or define the ident of persistent handles. PARAMETERS
o $ident - the identification string RETURN VALUES
Returns the prior ident as string on success or FALSE on failure. EXAMPLES
Example #1 A http_persistent_handles_ident(3) example <?php echo http_persistent_handles_ident("CUSTOM"), " "; echo http_persistent_handles_ident("MyApp1"), " "; http_get("http://www.example.com/"); print_r(http_persistent_handles_count()); ?> The above example will output: CUSTOM stdClass Object ( [http_request] => Array ( [MyApp1] => Array ( [used] => 0 [free] => 1 ) ) [http_request_datashare] => Array ( [GLOBAL] => Array ( [used] => 1 [free] => 0 ) ) [http_request_pool] => Array ( ) ) SEE ALSO
http_persistent_handles_count(3), http_persistent_handles_clean(3). PHP Documentation Group HTTP_PERSISTENT_HANDLES_IDENT(3)
All times are GMT -4. The time now is 05:21 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy