Added PHP periodic-calendar and PERL Face detector
[mirrors/Programs.git] / bash / butils / tinyutils.bash
1 #!/bin/bash
2
3 tinycat() {
4 if [ -a "$1" ]; then
5 exec 6<"$1";
6 while read line <&6; do
7 echo "$line";
8 done;
9 exec 6<&-;
10 else echo 'FNF!' > /dev/stderr
11 fi;
12 }
This page took 0.235136 seconds and 4 git commands to generate.