10
# Бесконечный цикл в bash
for (( ; ; ))
do
	echo "infinite loops [ hit CTRL+C to stop]"
done
-----------