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.
|
#!/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
|