I have a bash script where I get the disk usage, for example 60%. How can I remove the % symbol? Using grep or awk?

link|improve this question

feedback

5 Answers

up vote 1 down vote accepted

This should do it:

sed 's/%//'

Pipe your string through it for the best results.

link|improve this answer
1  
There's a "g" missing because otherwise it would only match the first % in each line. So make it 's/%//g'. – joechip Aug 23 '11 at 17:14
@joechip: If there's only one %, as per the question, you don't need g. – womble Aug 23 '11 at 22:10
feedback

sed is one of the easiest ways

sed -i 's/\%//g' fileName
link|improve this answer
feedback

Instead of sed, use tr.

tr -d '%'
link|improve this answer
Good point (+1). tr is faster than sed. – Michał Šrajer Oct 3 '11 at 13:59
feedback

There is no need for external tools like tror even sed as bash can do it on its own since forever.

percentage="60%"
number=${percentage%\%}

This statement removes the shortest matching substring (in this case an escaped %) from the end of the variable. There are other string manipulating facilities built into bash. It even supports regular expressions. Generally, most of the stuff you normally see people using tr, sed, awk or grep for can be done using a bash builtin. It's just almost noody knows about that and brings the big guns...

See http://tldp.org/LDP/abs/html/parameter-substitution.html#PSOREX1 for more information.

link|improve this answer
feedback

If the disk usage is in a variable, bash can do the removal as part of a variable substitution:

diskusagepct="60%"
echo "disk usage: ${diskusagepct%\%} percent"  # prints disk usage: 60 percent
diskusagenum="${diskusagepct%\%}"  # sets diskusagenum to 60
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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