Now the optional machine specification must be indicated by the
--machine parameter, not to generate ambiguities with directories.
Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
cat<<EOF
Usage:
- $0 <path> [machine]
+ $0 [ --machine=<machine> ] <path> ...
- Options:
+ <path>
+ Directory(ies) where to look for machine definition files.
- path: directory to look for machine definition files
- machine: optinal param to restrict the printing for a specific machine name
+ Options:
+ --machine=<machine>
+ Optional param to restrict the printing for a specific machine name.
EOF
}
-path=$1
-specific_machine=$2
+path=
+specific_machine=
+
+for opt in ${*}; do
+ if [ "`echo $opt | cut -b-10`" = "--machine=" ]; then
+ specific_machine="`echo $opt | cut -b11-`"
+ else
+ path="$path $opt"
+ fi
+done
-if [ -z "$1" ]; then
+if [ -z "$path" ]; then
usage
return 1
fi