#! /usr/bin/bash

echo 'This is a shell script with a for statement'
for f in $( ls ); do
   echo file: $f
done





