#!/bin/bash

if [ $# -lt 2 ]
then
  echo "Błąd $0: trzeba podać dwa argumenty"
else
  echo "Nazywam się $1 i pochodzę z $2"
fi
