forked from cory/tildefriends
Cory McWilliams
961109635b
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4193 ed5197a5-7fde-0310-b194-c3ffbd925b24
10 lines
175 B
Bash
Executable File
10 lines
175 B
Bash
Executable File
#! /bin/sh
|
|
|
|
find . -type f -perm -100 -print | grep -v run.sh | sort | while read -r x; do
|
|
echo "[$x]"
|
|
if ! "$x"; then
|
|
echo "*** [$x] FAILED" >&2
|
|
exit 1
|
|
fi
|
|
done
|