Sponsored Content
Full Discussion: How to Compare 2 Strings ?
Top Forums Shell Programming and Scripting How to Compare 2 Strings ? Post 302440472 by jim mcnamara on Tuesday 27th of July 2010 09:56:12 AM
Old 07-27-2010
Code:
if [[ "$Name1" = "$Name2" ]]
then
     # at this point we know they are equal
else
     # at this point we know they are not equal
fi

syntax correction....
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

to compare two strings

hi all, i am new to unix. Actually i need to compare two string and print the result... suppose type='sun' if; then echo good morning else echo good night fi whether the comparison is right r we need to use eq???? help me please.... :confused: thanks in advance.... (1 Reply)
Discussion started by: ithirak17
1 Replies

2. Shell Programming and Scripting

How to compare two strings

Hi all, I am trying to compare two strings/dates, but its throwing error::Syntax error at line 5: Please help !! Any alternate way to compare two dates is also fine.... logdate1=`date -u '+%Y.%m.%d %T'` sleep 5 logdate2=`date -u '+%Y.%m.%d %T'` if test... (5 Replies)
Discussion started by: prashant43
5 Replies

3. Shell Programming and Scripting

How to compare two strings using if

Hi, Here is my script #!/bin/ksh echo $pick_typ if ];then echo "inside if" else echo "outside if" fi when ever i pass CUS as parameter to this script am getting the correct value CUS, however if i pass ORD as parameter it is not coming inside if it is echoing else "Outside... (12 Replies)
Discussion started by: bhargav20
12 Replies

4. Shell Programming and Scripting

Compare text strings.

Hi Im trying to write a script that compare a text string. But it fails, I think it adds a extra line feed to the result and fails beacuse of that. The script. DT=`date +'%Y%m%d%H%M%S'` #ALARM_BIN=/users/alarms/ssa/alarms/bin QUEUE_THR=10 #unset offset #offset="***Server reports data... (3 Replies)
Discussion started by: vettec3
3 Replies

5. Shell Programming and Scripting

Compare two strings

hi.. i have a problem to compare two string my code is like that if ] then echo "both data are correct" elif ] echo "data is wrong" fi here $username1 is taking value from file.. (7 Replies)
Discussion started by: shubhig15
7 Replies

6. Shell Programming and Scripting

How to compare two strings in a file

hello guyzz please help me out.. I have two file a.sh and b.sh it contains two string SD109 ,SD108 . I want to compaere these two string . If a.sh>b.sh do rebasing record time. else it shows no rebasing required. Thanks. (2 Replies)
Discussion started by: abhijtr
2 Replies

7. Shell Programming and Scripting

Compare strings with space in if statement

DEV> vi test_if_statement.sh "test_if_statement.sh" 9 lines, 205 characters proc_out="Normal completion" proc_out_comp="Normal completion" echo 'proc_out:'$proc_out echo 'proc_out_comp:'$proc_out_comp if then echo 'match' else echo 'no_match' fi ~ ~ ~ ~ ~ ~ ~ ~ ~ (4 Replies)
Discussion started by: cartrider
4 Replies

8. Shell Programming and Scripting

Compare 2 Strings

I have 2 values V_1_4_4_b1 and V_1_5_1_RC_b1. I would need to compare them and determine if the 1st value is greater, less or equal than the 2nd value. The result should need to have a return value. I have below code in bash function but it seems it is not comparing it correctly. Any help will... (8 Replies)
Discussion started by: aderamos12
8 Replies

9. UNIX for Beginners Questions & Answers

If statement to compare two strings

Hi, I am trying to do the following to see if "ip" is already present in a file. if ; then echo "hi" else echo "hello" fi I am seeing errors on the if statement. Can someone please correct the syntax for me? Thanks (2 Replies)
Discussion started by: waince
2 Replies

10. Ubuntu

Compare 2 strings

I think there is a way to detect mouse movement. valuator changes if the mouse moves. So I need to compare the two strings. Not sure how to do that. How could I send the valuator string to a file ? I would need to do it twice. andy@7_~/Downloads$ xinput query-state 9 2 classes :... (7 Replies)
Discussion started by: drew77
7 Replies
QwtPoint3D(3)							 Qwt User's Guide						     QwtPoint3D(3)

NAME
QwtPoint3D - QwtPoint3D class defines a 3D point in double coordinates. SYNOPSIS
#include <qwt_point_3d.h> Public Member Functions QwtPoint3D () QwtPoint3D (double x, double y, double z) QwtPoint3D (const QwtPoint3D &) QwtPoint3D (const QPointF &) bool isNull () const double x () const double y () const double z () const double & rx () double & ry () double & rz () void setX (double x) void setY (double y) void setZ (double y) QPointF toPoint () const bool operator== (const QwtPoint3D &) const bool operator!= (const QwtPoint3D &) const Detailed Description QwtPoint3D class defines a 3D point in double coordinates. Constructor &; Destructor Documentation QwtPoint3D::QwtPoint3D () [inline] Constructs a null point. See also: isNull() QwtPoint3D::QwtPoint3D (doublex, doubley, doublez = 0.0) [inline] Constructs a point with coordinates specified by x, y and z. QwtPoint3D::QwtPoint3D (const QwtPoint3D &other) [inline] Copy constructor. Constructs a point using the values of the point specified. QwtPoint3D::QwtPoint3D (const QPointF &other) [inline] Constructs a point with x and y coordinates from a 2D point, and a z coordinate of 0. Member Function Documentation bool QwtPoint3D::isNull () const [inline] Returns true if the point is null; otherwise returns false. A point is considered to be null if x, y and z-coordinates are equal to zero. bool QwtPoint3D::operator!= (const QwtPoint3D &other) const [inline] Returns true if this rect and other are different; otherwise returns false. bool QwtPoint3D::operator== (const QwtPoint3D &other) const [inline] Returns true if this point and other are equal; otherwise returns false. double & QwtPoint3D::rx () [inline] Returns a reference to the x-coordinate of the point. double & QwtPoint3D::ry () [inline] Returns a reference to the y-coordinate of the point. double & QwtPoint3D::rz () [inline] Returns a reference to the z-coordinate of the point. void QwtPoint3D::setX (doublex) [inline] Sets the x-coordinate of the point to the value specified by x. void QwtPoint3D::setY (doubley) [inline] Sets the y-coordinate of the point to the value specified by y. void QwtPoint3D::setZ (doubley) [inline] Sets the z-coordinate of the point to the value specified by z. QPointF QwtPoint3D::toPoint () const [inline] Rounds 2D point, where the z coordinate is dropped. double QwtPoint3D::x () const [inline] Returns the x-coordinate of the point. double QwtPoint3D::y () const [inline] Returns the y-coordinate of the point. double QwtPoint3D::z () const [inline] Returns the z-coordinate of the point. Author Generated automatically by Doxygen for Qwt User's Guide from the source code. Version 6.0.0 Fri Apr 15 2011 QwtPoint3D(3)
All times are GMT -4. The time now is 12:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy