GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
docs
[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
2.688386 seconds
and
4
git commands to generate.