1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash cargo test mkdir -p /tmp/debug/test cp target/debug/deps/plain-* /tmp/debug/test for x in /tmp/debug/test/plain*; do echo $x chmod +x $x $x --nocapture rm $x done