Skip to content
Snippets Groups Projects
Commit 45e78b8a authored by Nguyen Anh Quynh's avatar Nguyen Anh Quynh
Browse files

c-regress: fix run-all.sh to avoid infinite loop

parent 43c981b8
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
for i in `find . -type f`; do [ -x $i ] && echo "Run $i" && $i; done
for i in `find . -not -name "*.sh" -type f`; do [ -x $i ] && echo "Run $i" && $i; done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment