huangcm
2025-04-22 c8cf547b11f2c03565d8fb8b8bcdc69860d0ed08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
NM=$1
 
shift
 
PREFIX=$1
 
shift
 
SUFFIX=$1
 
shift
 
while test "$1" != ""
do
    $NM -g -fp $1 | while read -a line
    do
   type=${line[1]}
   # if [[ "$type" != "V" && "$type" != "U" ]]; then
   #if [[ "$type" != "W" && "$type" != "V" && "$type" != "U" ]]; then
       echo "$PREFIX${line[0]}$SUFFIX # ${line[1]}"
   #fi
    done
 
    shift
done