7 lines
63 B
Bash
7 lines
63 B
Bash
#!/bin/sh
|
|
|
|
while true; do
|
|
python test.py
|
|
sleep 2
|
|
done;
|