This file is indexed.

/usr/share/codeblocks/lexers/lexer_batch.sample is in codeblocks-common 10.05-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
:: This is a simple batch file demonstrating the lexer's capabilities

@echo off

if %OS% == Windows_NT goto Windows-NT

if not %OS% == Windows_NT goto Other

:Windows-NT

echo This is Windows NT4/2000/XP/2003

goto end

:Other

echo This is Windows 95/98/ME

goto end

:end

pause