zdrojak gamebook ogb gbook.wz.cz
[mirrors/Programs.git] / bash / butils / tinyutils.bash
CommitLineData
21c4e167
H
1#!/bin/bash
2
3tinycat() {
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.1405 seconds and 4 git commands to generate.