v zaveru sem se s tim popral takhle:
harvie@harvie-ntb:~/Work/butils$ source tinyutils.bash
harvie@harvie-ntb:~/Work/butils$ tinycat tinyutils.bash
#!/bin/bash
tinycat() {
if [ -a "$1" ]; then
exec 6<"$1";
while read line <&6; do
echo "$line";
done;
exec 6<&-;
else echo 'FNF!' > /dev/stderr
fi;
}
harvie@harvie-ntb:~/Work/butils$ tinycat not_found
FNF!
harvie@harvie-ntb:~/Work/butils$
staci pres > presmerovat do souboru a muzes kopcit...

