Pliki_SOP/zajecia3/loop.sh
2018-12-05 18:09:07 +01:00

7 lines
53 B
Bash
Executable File

#!/bin/bash
while true; do
echo x;
sleep 10;
done