Pliki_SOP/zajecia3/loop.sh

7 lines
53 B
Bash
Raw Normal View History

2018-12-05 18:09:07 +01:00
#!/bin/bash
while true; do
echo x;
sleep 10;
done