/usr/src/blcr-0.8.5/tests/CountingApp.java is in blcr-dkms 0.8.5-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 | /**
* The CountingApp class implements an application that
* simply prints "X Hello" to standard output for X
* from 0 to 9, pausing 1 second between each line.
*/
class CountingApp {
public static void main(String[] args) throws InterruptedException {
for (int i = 0; i < 10; ++i) {
System.out.print(i);
System.out.println(" Hello");
Thread.sleep(1000);
}
}
}
|