You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
148 B
Bash
11 lines
148 B
Bash
7 years ago
|
#!/bin/bash
|
||
|
# I produce text every 100ms, for testing mitogen.core.iter_read()
|
||
|
|
||
|
i=0
|
||
|
|
||
|
while :; do
|
||
|
i=$(($i + 1))
|
||
|
echo "$i"
|
||
|
sleep 0.1
|
||
|
done
|