mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
14 lines
226 B
Bash
Executable File
14 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Extracts and orders symbol names so we can see how big they are
|
|
#
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "USAGE:"
|
|
echo "scripts/find_big_ram.sh espruino_XXXX.lst"
|
|
exit 1
|
|
fi
|
|
|
|
grep "^20...... [^<]" $1 | sort --key=5
|