mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-01 10:06:49 -04:00

* externalize antenna calc and wav view * Added a tool to check if all the pictures in graphics are used in internal apps
10 lines
245 B
Bash
Executable file
10 lines
245 B
Bash
Executable file
#!/bin/bash
|
|
for fname in $(ls ../graphics/); do
|
|
fname=$(echo "$fname" | awk -F'.' '{print $1}')
|
|
out=$(grep -r --exclude="bitmap.hpp" "$fname" ../* )
|
|
ret=$?
|
|
if [[ "$ret" -ne 0 ]]; then
|
|
echo "$fname not found"
|
|
fi
|
|
done
|
|
|