mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 01:42:29 +00:00
11 lines
234 B
Bash
Executable file
11 lines
234 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# this script just collects symbols into one file for convenience
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "Select a version to use"
|
|
exit 1
|
|
fi
|
|
|
|
awk 1 $1/symbol/*/*.sym | sort -k2 -t' ' > $1/symbol/main.sym
|