From: bugtrack@alsa-project.org
To: alsa-devel@alsa-project.org
Subject: [ALSA - utils 0000318]: alsaconf: -bash: syntax error in conditional expression
Date: Wed, 19 Jan 2005 17:00:28 +0100 [thread overview]
Message-ID: <e446f22b2affeab69ccf937267cdbac5@bugtrack.alsa-project.org> (raw)
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=318>
======================================================================
Reported By: Toralf Förster
Assigned To:
======================================================================
Project: ALSA - utils
Issue ID: 318
Category: alsaconf
Reproducibility: always
Severity: minor
Priority: normal
Status: new
======================================================================
Date Submitted: 05-31-2004 12:25 CEST
Last Modified: 01-19-2005 17:00 CET
======================================================================
Summary: alsaconf: -bash: syntax error in conditional
expression
Description:
The error above results from lines like:
elif [ -f /etc/redhat-release -a `grep -c "Red Hat" /etc/redhat-release
2>/dev/null` -ne 0 ]; then
instead it should be
elif [[ -f /etc/redhat-release && `grep -c "Red Hat" /etc/redhat-release
2>/dev/null` -ne 0 ]; then
notice the doubled '[[' and ']]' and '&&' instead of '-a', isn't it ?
======================================================================
----------------------------------------------------------------------
tiwai - 01-19-05 16:44
----------------------------------------------------------------------
Even the second [] isn't necessary when you use grep -q.
----------------------------------------------------------------------
Toralf Förster - 01-19-05 17:00
----------------------------------------------------------------------
Ok, what I mean, is:
tfoerste@nhh221 ~ $ [ -f /etc/redhat-release -a `grep "Red Hat"
/etc/redhat-release 2>/dev/null` -ne 0 ] && echo yes || echo no
bash: [: too many arguments
no
tfoerste@nhh221 ~ $ [[ -f /etc/redhat-release && `grep "Red Hat"
/etc/redhat-release 2>/dev/null` -ne 0 ]] && echo yes || echo no
no
tfoerste@nhh221 ~ $
Issue History
Date Modified Username Field Change
======================================================================
05-31-04 12:25 Toralf Förster New Issue
01-19-05 15:36 jdthood Note Added: 0003288
01-19-05 16:44 tiwai Note Added: 0003292
01-19-05 17:00 Toralf Förster Note Added: 0003299
======================================================================
-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
next reply other threads:[~2005-01-19 16:00 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-19 16:00 bugtrack [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-07-08 8:34 [ALSA - utils 0000318]: alsaconf: -bash: syntax error in conditional expression bugtrack
2005-02-22 17:05 bugtrack
2005-02-18 21:04 bugtrack
2005-01-19 15:44 bugtrack
2005-01-19 14:36 bugtrack
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e446f22b2affeab69ccf937267cdbac5@bugtrack.alsa-project.org \
--to=bugtrack@alsa-project.org \
--cc=alsa-devel@alsa-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.