for f in `ls`; do if [ -x $f ] ; then if [[ `file $f | grep ELF` != '' ]]; then rm $f; fi ; fi; done