#!/bin/bash

script_dir=`dirname "$0"`

for file in `$script_dir/find-unix-scripts`; do
  if [ ! -x $file ]
    then echo $file;
    # else echo "$file ok"
  fi
done
