This file is indexed.

/usr/share/dx/samples/scripts/Connect is in dxsamples 4.4.0-1.

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
// Import scattered point data of carbon dioxide concentration. This data
// is a time series.
data = Import("CO2.general",format="general");

// Select frame 17 of the series
frame17 = Select(data,17);

// Connect the dots
connected = Connect(frame17);

// AutoColor and Display
colored = AutoColor(connected);
camera = AutoCamera(colored);
Display(colored,camera);