#! /bin/sh if [ -z "$1" ]; then echo "Usage: $0 input.avi output.avi" exit 1 fi exec ffmpeg -i "$1" -c copy "$2"