#!/bin/bash
# Script: salutacio.sh
# Ús: ./salutacio.sh <nom> <departament>

echo "Nom del script: $0"
echo "Usuari:        $1"
echo "Departament:   $2"
echo "Paràmetres rebuts: $#"
echo "Tots els paràmetres: $*"