projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
net: Add a function to dump TCP's hash table
[akaros.git]
/
kern
/
kfs
/
looper.sh
1
#!/bin/bash
2
3
if [[ $# -lt 1 ]] ; then
4
echo "Need an app!"
5
exit
6
fi
7
RET=0 ;
8
INC=0 ;
9
while [ $RET -eq 0 ]; do
10
echo $INC
11
$@
12
RET=$?
13
let INC=$INC+1
14
done