6 lines
89 B
Bash
Executable File
6 lines
89 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
diff -u <(nm $1 | grep " T " | cut -f3 -d " " | sort) $2
|