Skip to content

Instantly share code, notes, and snippets.

@KarateJB
Created December 24, 2021 01:22
Show Gist options
  • Save KarateJB/b9ba999b07ae460f08af6f351505e97d to your computer and use it in GitHub Desktop.
Save KarateJB/b9ba999b07ae460f08af6f351505e97d to your computer and use it in GitHub Desktop.
Shell Scripts
#! bin/bash
export counter=1
(
while [ $counter -le 5 ]; do
export counter=`expr $counter + 1`
echo $counter
done
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment