How to convert string into integer in shell scripting?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to convert string into integer in shell scripting?
# 1  
Old 04-12-2013
How to convert string into integer in shell scripting?

Hi All,

Code:
sessionid_remote=$(echo "select odb_sessionid from sysopendb where odb_dbname='syscdr';" | sudo -u cucluster ssh ucbu-aricent-vm93 "source /opt/cisco/connection/lib/connection.profile; $INFORMIXDIR/bin/dbaccess sysmaster@ciscounity")

for sid in $sessionid_remote;do
        if [[ $sid = *[!0-9]* ]]; then
                continue
        else
                if [ $sid = "4089" ]; then
                        echo "hi"
                sudo -u cucluster ssh ucbu-aricent-vm93 'sudo -u root /bin/sh /opt/cisco/connection/bin/cucdb onstat -'
                 sudo -u cucluster ssh ucbu-aricent-vm93 'sudo -u root /bin/sh /opt/cisco/connection/bin/cucdb onmode -z $sid'
                fi
                echo $sid
        fi

done

This is my script above but it is failed to run command
Code:
sudo -u cucluster ssh ucbu-aricent-vm93 'sudo -u root /bin/sh /opt/cisco/connection/bin/cucdb onmode -z $sid'

because onmode takes unsigned integer with option -z since the value of $sid is string so it is not accepting
Please tell me how should i convert the value into number so that it would be acceptable

Moderator's Comments:
Mod Comment Use code tags!
# 2  
Old 04-12-2013
???
How this work:
Code:
sudo -u cucluster ssh ucbu-aricent-vm93 'sudo -u root /bin/sh /opt/cisco/connection/bin/cucdb onmode -z 4089'

If that works and
Code:
sudo -u cucluster ssh ucbu-aricent-vm93 'sudo -u root /bin/sh /opt/cisco/connection/bin/cucdb onmode -z $sid'

not then sid value is not 4089. If you give argument 4089 in the commandline, it's command problem handler it, not shell/caller problem. Args are always strings for the command.
# 3  
Old 04-12-2013
It doesn't work because variables do not expand inside single quotes ' ' , use double quotes " " .
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Convert String to an Array using shell scripting in JSON file.

This is the sample json I have pasted here. I want all the IP address strings to be converted into an array. For example "10.38.32.202" has to be converted to everywhere in the JSON. There are multiple IPs in a JSON I am pasting one sample object from the JSON. But the IPs already in an Array... (11 Replies)
Discussion started by: vinshas1
11 Replies

2. Shell Programming and Scripting

Convert string number to a integer

I have data as below "ROWS merge process complete. thousand rows changed" I need to get a variable assigned the value of 1000. I mean convert the string thousand to 1000. Any help or pointer. Please use CODE tags as required by forum rules! (6 Replies)
Discussion started by: dsravanam
6 Replies

3. Shell Programming and Scripting

How to read from file and convert from string to integer?

Hi all, I am trying to write a script to be able to Run top command Pick the PIDs that are taking more than 90% of CPU time Get more details like what is the script name and location for that PID Script should run until I manually kill it by ctrl + C I have come up with following script... (3 Replies)
Discussion started by: pat_pramod
3 Replies

4. Shell Programming and Scripting

Convert a string to variable in Bash shell

Hi All; I have 2 variable let's say $A and $B. These are actually some remotely executed command outputs. I captured these values in my local variables. Here is my problem. When I try to do some arithmetic operation with these variables, I receive an error message. Neither expr nor typeset -i... (3 Replies)
Discussion started by: Meacham12
3 Replies

5. Shell Programming and Scripting

[Solved] need to convert decimal to integer

Using below command awk 'NR==FNR{A=$1;next} {sum+=($2*A)}END{OFMT="%20f";print int(sum)}' Market.txt Product.txt answer:351770174.00000 how to convert this to 351770174. when i try with below command i am getting different result. awk 'NR==FNR{A=$1;next}... (3 Replies)
Discussion started by: katakamvivek
3 Replies

6. Shell Programming and Scripting

how to compare string integer with an integer?

hi, how to I do this? i="4.000" if ; then echo "smaller" fi how do I convert the "4.000" to 4? Thanks! (4 Replies)
Discussion started by: h0ujun
4 Replies

7. Shell Programming and Scripting

Convert to Integer

Hi fellows!! i'm doing something which is not working out for me properly which i don't understand why nowdate=`date +%s` echo $nowdate now the problem how to convert a date which is stored in a variable mydate="22/Oct/2011" mydate=`date -d '$mydate' +%s` it gives error... (11 Replies)
Discussion started by: me_newbie
11 Replies

8. Shell Programming and Scripting

how to convert string to an integer and how to do calculations like add.,sub.,mult. on it

How to convert string into an integer or number For example : % set tim = `date` % echo $tim Tue Feb 22 16:25:08 IST 2011 here How to increment time by 10 hrs like 16+10 , here 16 is a string in date cmd. .. how to convert 16 to an integer and added to a another nimber ? Thanks... (3 Replies)
Discussion started by: sbhamidi
3 Replies

9. Shell Programming and Scripting

How to Rename/Convert Files in Shell Scripting?

Hi All, I want to Rename/Convert all the .doc files in to .pdf format. I am using the following Script. But the final output is not proper. ########################################## cd /u13/prepaid/ftpdata/INfiles/sap/ for name in `ls *.doc` do name1=`echo $name | sed -e... (11 Replies)
Discussion started by: hanu_oracle
11 Replies

10. UNIX for Dummies Questions & Answers

convert from an integer to a string

i want to convert from an integer to a string..in unix...i am writing a C program with embedded SQL... I remeber using itoa...but for some reason it doesnt work......i cant find it in the manual..... Maybe that is the wrong command..... but i have checked Dev Studio.....and it doest exist in the... (6 Replies)
Discussion started by: mojomonkeyhelper
6 Replies
Login or Register to Ask a Question