#!/bin/bash
for i in $( ls )
do
	if [ -d $i ] 
	then 
		cd $i
		./$i -silent
		cd ..
	fi
done
