Last active
March 5, 2025 10:17
-
-
Save kartben/cf96c74df7138f39601c55b8d5af987e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type f -exec grep -l "zephyr:board::" {} \; \ | |
| xargs grep -L "zephyr:board-supported-hw" \ | |
| xargs grep -l "Supported Features" \ | |
| while IFS= read -r file; do | |
grep -n "Supported Features" "$file" | cut -d: -f1 | while IFS= read -r line; do | |
echo "${file}:${line}" | |
done | |
done | xargs code -g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment