#!/bin/bash
echo "Liczba argumentow: $#"
if [ $# -eq 0 ]; then
	echo "Skrypt uruchomiono bez argumentow"
else
	LICZNIK=1
	while [ $1 ]; do
		echo "Argument $LICZNIK to $1"
		shift
		LICZNIK=`expr $LICZNIK + 1`
	done
fi

