#!/bin/sh
Arguments passed when the script is called from the command line are:
$0: script name
$1: first argument
$2: second argument
...
${10}: tenth argument
...
MYVAR=0
echo "$MYVAR"
if [ "$?" == "0" ]; then
echo -n "."
else
echo -n ".."
fi