GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
docs
[mirrors/Programs.git]
/
bash
/
butils
/
tinyutils.bash
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
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.21698 seconds
and
4
git commands to generate.