projects
/
vte.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use accessors for setting adjustment
[vte.git]
/
perf
/
inc.sh
1
#!/bin/bash
2
3
cnt=$1
4
[ -n "$cnt" ] || cnt=500000
5
6
x=0
7
while [ $x -lt $cnt ]; do
8
echo $x
9
x=$(($x + 1))
10
done