mirror of
https://github.com/brl/mutter.git
synced 2024-12-27 13:22:15 +00:00
7 lines
128 B
Bash
7 lines
128 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
inputfile="$1"
|
||
|
outputfile="$2"
|
||
|
|
||
|
nm "$inputfile" | grep '[DR] _\?unit_test_'|sed 's/.\+ [DR] _\?//' > "$outputfile"
|