8 lines
65 B
Bash
8 lines
65 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e # stop on error
|
||
|
|
||
|
make essai
|
||
|
|
||
|
time ./essai
|