mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-04-27 01:20:49 +00:00
11 lines
245 B
Bash
11 lines
245 B
Bash
![]() |
#!/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
|
||
|
|