This file is indexed.

/usr/share/perl5/Finance/Bank/IE/templates/gnuplot_print.gp is in libfinance-bank-ie-permanenttsb-perl 0.4-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
24
25
# Gnuplot script to graph the balance
# Expected format for data is 2 columns:
#
# Date Balance
#
# Each column data is separated by space or tabulation
# Date should be in format dd/mm/yyyy

set title '[% ACCOUNT %]'
set xlabel 'Date';
set ylabel 'Balance';
set xdata time;
set timefmt "%d/%m/%Y";
set grid
set terminal png
set output "[% OUTPUT %]"
plot '[% FILENAME %]' using 1:2 title "[% TITLE %]" with linespoints;

set terminal wxt
replot

set terminal dumb
replot

pause -1 "Hit return to exit"