#!/bin/bash source llibreria.sh existeix $1 if [ $# -ne "1" ] then echo "Ús: $0 fitxer" >&2 exit 3 fi cat $1 | while read linia do echo "$linia" sleep 1 done