# HG changeset patch # User diego # Date 1252319836 0 # Node ID 998475fffe0c37ab8b29e724eca871435bcb7c87 # Parent c35359578f8df684e0762242f67492a27159612c Avoid bash-specific 'let' syntax in shell scripts. diff -r c35359578f8d -r 998475fffe0c TOOLS/mplmult.sh --- a/TOOLS/mplmult.sh Sun Sep 06 00:07:35 2009 +0000 +++ b/TOOLS/mplmult.sh Mon Sep 07 10:37:16 2009 +0000 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # example how to output video on multiple windows in sync. # might be even more useful in combination with vo ggi # to distribute the video arbitrarily @@ -29,7 +29,7 @@ fifo_list="" while test $i -le $count; do fifo_list="$dir/mp$i $fifo_list" - let i=$i+1 + i=$(($i+1)) done mkfifo $fifo_list