Skip to content

Instantly share code, notes, and snippets.

@kartben
Last active March 5, 2025 10:17
Show Gist options
  • Save kartben/cf96c74df7138f39601c55b8d5af987e to your computer and use it in GitHub Desktop.
Save kartben/cf96c74df7138f39601c55b8d5af987e to your computer and use it in GitHub Desktop.
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