This file is indexed.

/usr/share/doc/bwbasic/examples/input.bas is in bwbasic 2.20pl2-11.

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
10 REM INPUT.BAS -- Test INPUT Statement 
20 PRINT "INPUT.BAS -- Test INPUT Statement" 
30 REM 
40 INPUT "Input string, number: "; s$, n 
50 PRINT "The string is: ";s$ 
60 PRINT "The number is: ";n 
70 END