GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
example of embeding xterm into gtk2 app
[mirrors/Programs.git]
/
bash
/
butils
/
tinyutils.bash
Commit
Line
Data
21c4e167
H
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.145518 seconds
and
4
git commands to generate.