Removed some stupid .part file and added such files to .gitignore
[mirrors/Programs.git] / bash / getopts.sh
CommitLineData
21c4e167
H
1#!/bin/sh
2
3while getopts "a:b:c:d:" OPT; do
4 echo "$OPT ==> $OPTARG";
5done
6
7shift $(($OPTIND -1)); echo "Rest: $@";
This page took 0.08143 seconds and 4 git commands to generate.