#!/bin/sh
# Make all files in the working directory
# executable.
for i in *
do
  chmod a+x $i 
  ls -l $i
done
