changeset 27197:88fc90468b89

Replace bash-specific [[]] construct by a proper [] test.
author diego
date Mon, 07 Jul 2008 06:47:01 +0000
parents 37feaaf7b7b4
children 305dc504c407
files TOOLS/aconvert
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/aconvert	Mon Jul 07 06:43:45 2008 +0000
+++ b/TOOLS/aconvert	Mon Jul 07 06:47:01 2008 +0000
@@ -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