0
0
This commit is contained in:
Guy Baconniere
2021-08-21 19:03:19 +02:00
parent 681c2242b9
commit ea62cdfc05
16 changed files with 522 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh
txt=$(basename $0 .sh)".txt"
set -e
rm -f a.out
cc -Wall -Wextra -Werror -o a.out -L../ft -lft *.c
cat ${txt} | while read nbr; do
./a.out "${nbr}"
done
rm -f a.out