From 1ebc859ff8a018b3d98e6bd7923d7d877cf76088 Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 7 Jul 2008 06:47:01 +0000 Subject: Replace bash-specific [[]] construct by proper a proper [] test. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27229 b3059339-0415-0410-9bf9-f77b7e298cf2 --- TOOLS/aconvert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'TOOLS') diff --git a/TOOLS/aconvert b/TOOLS/aconvert index cf74abb1f9..37a031115f 100755 --- a/TOOLS/aconvert +++ b/TOOLS/aconvert @@ -3,7 +3,7 @@ # Author: Jonas Jermann # Description: A hack to allow mencoder to encode from an audio only file -if [[ $1 = "" ]]; then +if [ "$1" = "" ]; then echo "Usage: $0 <\"input file\"> <\"output file\"> <\"options\">" exit 0 fi -- cgit v1.2.3