Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

1
2
3
4
5
6
7
8
9
# Find words which contain the letter 'a'.
-d \s+ a
# Find words which contain a capital letter.
-d \s+ [A-Z]
# Find sentences which contain certain words.
-d \.\s+ -M error
-d \.\s+ -M default
# Find paragraphs which contain "PATTERN".
-d \n\n -M PATTERN