1
mirror of https://github.com/mpv-player/mpv synced 2024-11-07 01:47:00 +01:00

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

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27229 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-07-07 06:47:01 +00:00
parent 07e557c6d9
commit 1ebc859ff8

View File

@ -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