This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/bash | |
frame_rate=2 | |
# Process command line options | |
while getopts "r:" opt; do | |
case $opt in | |
r) frame_rate=$OPTARG ;; | |
\?) echo "Usage: $0 [-r frame_rate] input_file output_file"; exit 1 ;; | |
esac |
OlderNewer