Compare 1 with another string in bash

0 votes

I've spent 2 hours with an if statement, that never works like I want:

#should return true
if [ "$1" == "355258054414904" ]; then 

Here is the whole script:

#!/bin/bash

param=$1
INPUT=simu_900_imei_user_pass.csv
OLDIFS=$IFS
IFS=,
[ ! -f $INPUT ] && { echo "$INPUT ime not found"; exit 99; }
while read imei email pass 
do
    echo "First Parameter-IMEI: $1"
    if [ "$1" == "355258054414904" ]; then
        echo "GOOD"
    fi
done < $INPUT
IFS=$OLDIFS

This is the output of the script:

First Parameter-IMEI: 355258054414904
First Parameter-IMEI: 355258054414904
First Parameter-IMEI: 355258054414904

I have seen a lot of pages about the subject, but I can't make it work :(

EDIT: I Join the content of csv for better understanding ! Tx for your help !

4790057be1803096,user1,pass1
355258054414904,juju,capp
4790057be1803096,user2,pass2
358854053154579,user3,pass3
Jun 13, 2022 in Linux Administration by Rahul
• 3,380 points
718 views

1 answer to this question.

0 votes

The explanation $1 doesn't match is on the grounds that $1 implies the main boundary given to the content on the order line, while you believe it should match the principal field read from the record. That worth is in $imei.

You most likely implied:

on the off chance that [ "$imei" == "355258054414904" ];
    reverberation "Great"
fiSince it is inside the circle where you read input record line by line.

To actually look at content of $1 use:

feline - vet <<< "$1"
UPDATE: To strip \r from $1 have this at top:

param=$(tr - d '\r' <<< "$1")
And afterward use "$param" in rest of your content.
answered Jun 13, 2022 by anonymous

edited Mar 5
0 votes

The explanation $1 doesn't match is on the grounds that $1 implies the main boundary given to the content on the order line, while you believe it should match the principal field read from the record. That worth is in $imei.

You most likely implied:

on the off chance that [ "$imei" == "355258054414904" ];
    reverberation "Great"
fi
Since it is inside the circle where you read input record line by line.

To actually look at content of $1 use:

feline - vet <<< "$1"
UPDATE: To strip \r from $1 have this at top:

param=$(tr - d '\r' <<< "$1")
And afterward use "$param" in rest of your content.
answered Jun 13, 2022 by Korak
• 5,820 points

Related Questions In Linux Administration

0 votes
0 answers

Compare $1 with another string in bash

I've spent 2 hours with an if statement, that ...READ MORE

Jun 9, 2022 in Linux Administration by Rahul
• 3,380 points
425 views
0 votes
1 answer

Comparing two string variables in an 'if' statement in Bash

1. For string comparison, use: if [ "$s1" ...READ MORE

answered May 15, 2019 in Linux Administration by Shubham
• 13,490 points
1,904 views
0 votes
0 answers

How do I copy folder with files to another folder in Unix/Linux?

I am having some issues copying a ...READ MORE

Apr 13, 2022 in Linux Administration by Soham
• 9,710 points
455 views
0 votes
0 answers

How do I copy folder with files to another folder in Unix/Linux?

I am having some issues to copy ...READ MORE

Apr 21, 2022 in Linux Administration by Edureka
• 13,690 points
481 views
0 votes
1 answer

How to check if a string contains a substring in Bash?

You ought to recollect that shell prearranging ...READ MORE

answered May 27, 2022 in Linux Administration by Korak
• 5,820 points
1,443 views
0 votes
0 answers
0 votes
0 answers

How to split a string into an array in Bash?

In a Bash script, I would like ...READ MORE

Jun 9, 2022 in Linux Administration by Rahul
• 3,380 points
679 views
0 votes
1 answer

How to take input from user in bash script?

You can use if-else branch to check ...READ MORE

answered Jan 31, 2019 in Linux Administration by Omkar
• 69,220 points
1,270 views
0 votes
1 answer

How to keep quotes in Bash arguments?

utilizing "$@" will substitute the contentions as ...READ MORE

answered Jun 13, 2022 in Linux Administration by Korak
• 5,820 points
1,136 views
0 votes
1 answer

Is there a better way to run a command N times in bash?

In the event that your reach has ...READ MORE

answered Jun 13, 2022 in Linux Administration by Korak
• 5,820 points
849 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP