This file is indexed.

/usr/share/octave/site/m/pfstools/pfs_close_frames.m is in octave-pfstools 2.1.0-3.

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
function pfs_close_frames( pfs_struct )
  ## Close pfs stream opened with pfs_open_frames. Removes all temporary
  ## files.
  ##
  ## usage: pfs_close_frames( pfs_struct )
  ##

  if( !isfield( pfs_struct, "fid" ) )
    error( "pfs_close_frames: pfs_struct wasn't opened with pfs_open_frames\n" );
  endif

  pfsclose( pfs_struct );
  fclose( pfs_struct.fid );
  
endfunction