#!/bin/bash #----- # classic-for-demo # # just print LOOKY! to the screen, plus the counter # variable, five times # # by: Sharon Tuttle # last modified: 2022-09-14 #----- for ((i=0; i<5; i++)) do echo "LOOKY! $i" done