vote up 3 vote down star

I have a shell script with this code:

var=`hg st -R "$path"`
if [ -n "$var" ]; then
    echo $var
fi

But the conditional code always executes because hg st always prints at least one newline character.

  • Is there a simple way to strip whitespace from $var (like trim() in php)?

or

  • Is there a standard way of dealing with this issue?

I could use sed or awk, but I'd like to think there is a more elegant solution to this problem.

flag

65% accept rate

9 Answers

vote up 0 vote down

You can use old-school tr. For example, this returns the number of modified files in a git repository, whitespaces stripped.

MYVAR=`git ls-files -m|wc -l|tr -d ' '`
link|flag
vote up 0 vote down
#!/bin/sh

trim() { echo $1; }

echo ">>$(trim 'right side    ')<<"
echo ">>$(trim '    left side')<<"
echo ">>$(trim '    both sides    ')<<"
link|flag
vote up 0 vote down

use awk

echo $var | awk '{gsub(/^ +| +$/,"")}1'
link|flag
vote up 1 vote down
#!/bin/sh

trim()
{
    trimmed=$1
    trimmed=${trimmed%% }
    trimmed=${trimmed## }

    echo $trimmed
}


HELLO_WORLD=$(trim "hello world  ")
FOO_BAR=$(trim " foo bar")
BOTH_SIDES=$(trim " both sides  ")
echo "'${HELLO_WORLD}', '${FOO_BAR}', '${BOTH_SIDES}'"
link|flag
vote up 0 vote down

Sorry everyone, there was a problem elsewhere in my script and I thought that var had a trailing newline in it, but that actually was not the case. Command substitution strips trailing newlines automatically, as mentioned here: http://tldp.org/LDP/abs/html/commandsub.html.

link|flag
vote up 2 vote down

I've seen scripts just use variable assignment to do the job:

$ xyz=`echo -e 'foo \n bar'`
$ echo $xyz
foo bar

Whitespace is automatically coalesced and trimmed. One has to be careful of shell metacharacters (potential injection risk).

I would also recommend always double-quoting variable substitutions in shell conditionals:

if [ -n "$var" ]; then

since something like a -o or other content in the variable could amend your test arguments.

link|flag
vote up 1 vote down

You can delete newlines with tr:

var=`hg st -R "$path" | tr -d '\n'`
if [ -n $var ]; then
    echo $var
done
link|flag
I don't want to remove '\n' from the middle of the string, only from the beginning or end. – too much php Dec 15 '08 at 21:48
vote up 6 vote down

Bash has regular expressions, but they're well-hidden:

$ var='abc def'
$ echo $var
abc def
$ echo ${var/ /}
abcdef
link|flag
It doesn't seem to work with cygwin. – Paul Tomblin Dec 15 '08 at 21:54
Or rather, it works for spaces in the middle of a var, but not when I attempt to anchor it at the end. – Paul Tomblin Dec 15 '08 at 21:56
Does this help any? From the manpage: "${parameter/pattern/string} [...] If pattern begins with %, it must match at the end of the expanded value of parameter." – Ant P Dec 15 '08 at 22:28
@Ant, so they're not really regular expressions, but something similar? – Paul Tomblin Dec 15 '08 at 22:40
They're regex, just a strange dialect. – Ant P Mar 5 at 12:36
show 1 more comment
vote up 2 vote down

I've always done it with sed

  var=`hg st -R "$path" | sed -e 's/  *$//'`

If there is a more elegant solution, I hope somebody posts it.

link|flag

Your Answer

Get an OpenID
or

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