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

c-crashes: print \n before each run for readability

parent ee45f927
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
for i in $(find . -not -name "*.sh" -type f | sort -n); do
[ -x $i ] && echo "Run $i" && $i
[ -x $i ] && echo "\nRun $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