[MPlayer-cvslog] r27229 - trunk/TOOLS/aconvert

diego subversion at mplayerhq.hu
Mon Jul 7 08:47:05 CEST 2008


Author: diego
Date: Mon Jul  7 08:47:01 2008
New Revision: 27229

Log:
Replace bash-specific [[]] construct by proper a proper [] test.


Modified:
   trunk/TOOLS/aconvert

Modified: trunk/TOOLS/aconvert
==============================================================================
--- trunk/TOOLS/aconvert	(original)
+++ trunk/TOOLS/aconvert	Mon Jul  7 08:47:01 2008
@@ -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



More information about the MPlayer-cvslog mailing list