#!/bin/bash exampleVariable=600 for i in {1..10} do echo hello $i done for file in ./* do numLines=$(wc -l < $file) echo the file $file contains $numLines lines of text done echo the value of the variable is $exampleVariable