Deal with spaces in path names

This commit is contained in:
Matthias Neeracher 2011-07-26 21:53:01 +00:00
parent ffc7ff5c38
commit ea03581088
3 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,3 @@
#!/bin/bash -l #!/bin/bash -l
exec lame $* exec lame "$*"

View File

@ -1,6 +1,6 @@
#!/bin/bash -l #!/bin/bash -l
export PATH=`dirname $1`:$PATH export PATH="`dirname $1`":$PATH
exec $* exec $*

View File

@ -1,4 +1,4 @@
#!/bin/sh -l #!/bin/sh -l
cd ${0%/*/*}/share/mma cd "${0%/*/*}"/share/mma
exec ${0%/*}/mma.py $* exec "${0%/*}"/mma.py $*