You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
while [ $# -ne 0 ]; do
|
|
case "$1" in
|
|
'-v')
|
|
echo 'Mode verbose'
|
|
shift
|
|
;;
|
|
'-m'|'-M')
|
|
machine="$2"
|
|
shift 2 || sortie "Manque valeur"
|
|
;;
|
|
*) sortie "Argument $1 inconnu"
|
|
;;
|
|
esac
|
|
done
|