#!/bin/ksh

while read fileName; do
	echo Adding executable permission to: $fileName
	chmod +x ../$fileName
done < executables.list
