mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
10 lines
207 B
Bash
Executable File
10 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Extracts and orders symbol names in flash so we can see how big they are
|
|
#
|
|
# use like this
|
|
# scripts/find_big_symbols.sh espruino_hystm32_28.lst
|
|
|
|
|
|
grep "^08...... [^<]" $1 | sort --key=4
|