I made a shell script that finds the size of a directory, returning it in human readable format (e.g., 802M or 702K). I want to calculate the difference between the sizes.

Here's my shell script so far:

#!/bin/bash

current_remote_dir_size=789M
new_remote_dir_size=802M
new_size=`echo ${new_remote_dir_size} | grep -o [0-9]*`
current_size=`echo ${current_remote_dir_size} | grep -o [0-9]*`

echo "${new_size}-${current_size}"

But the output of the script is just

-

How can I make the subtraction work?

link

60% accept rate
feedback

migrated from superuser.com Jan 16 at 2:19

This question came from our site for computer enthusiasts and power users.

3 Answers

up vote 3 down vote accepted

You can do basic integer math in bash by wrapping the expression in $(( and )).

$ echo $(( 5 + 8 ))
13

In your specific case, the following works for me:

$ echo "${new_size}-${current_size}"
802-789
$ echo $(( ${new_size}-${current_size} ))
13

Your output at the end is a bit odd. Check that the grep expression actually produces the desired output. If not, you might need to wrap the regular expression in quotation marks.

link
Hmm, I still get an error. I changed the last line to echo $((${new_size} - ${current_size})), but then I get an operand error. – mr_schlomo Jan 16 at 1:10
@mr_schlomo It works on my system. See my edited post. Make sure the grep actually works as you expect it to. – Daniel Beck Jan 16 at 1:11
Ooops! Yep, grep was the problem. I just ran my script on my Linux server and it worked! – mr_schlomo Jan 16 at 1:13
1  
You can also do aritmethic operations using the following syntax: echo $[ 5 + 8 ] and with variables: echo $[ new_size + current_size ]. – hesse Jan 16 at 1:56
feedback

You don't need to call out to grep to strip letters from your strings:

current_remote_dir_size=789M
current_size=${current_remote_dir_size%[A-Z]}
echo $current_size  # ==> 789

new_remote_dir_size=802M
new_size=${new_remote_dir_size%[A-Z]}
echo $new_size      # ==> 802

See Shell Parameter Expansion in the bash manual.

link
But this would silently substract 802k-789M. :) – user unknown Jan 16 at 12:53
feedback

All you need is:

echo $((${new_remote_dir_size/M/}-${current_remote_dir_size/M/}))
  • $((a+b - 4)) can be used for arithmetic expressions
  • ${string/M/} replaces M in string with nothing. See man bash, Section String substitution, for more possibilities and details.
link
I get a substitution error with this. – mr_schlomo Jan 16 at 15:33
How do you invoke it? – user unknown Jan 16 at 15:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.