> As we're talking about bash scripts, I made one that uses mplayer as a
What, if I may ask, is the advantage of your:
case `echo $1` in
--input|-i)
INFILE=`echo $2`
over something simple shell-like:
case "$1" in
--input|-i)
INFILE="$2"
Put differently: Why do you echo variables instead of just using them?
Just wondering,
sorry for OT, :)
Moritz
_______________________________________________
MEncoder-users mailing list
MEncoder-users@mplayerhq.hu
https://lists.mplayerhq.hu/mailman/listinfo/mencoder-users
No comments:
Post a Comment