This commit is contained in:
gbrochar 2024-10-25 12:42:39 +02:00
parent bf21c93f1f
commit df05b33dce
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
#!/bin/bash
for file in $1*/**/*
do
if [[ "$file" != *.a ]] ;then
echo $file
./ft_nm $2 $file 2>&1 | cat > a
nm $2 $file 2>&1 | cat > b
diff a b
fi
done