This file is indexed.

/usr/bin/fixACE4consed is in mira-assembler 4.0-1.

This file is owned by root:root, with mode 0o755.

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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh
# \
  exec tclsh "$0" ${1+"$@"}

#
# Written by Bastien Chevreux (BaCh)
#
# Copyright (C) 2009 and later by Bastien Chevreux
#
# All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the 
# Free Software Foundation, Inc., 
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
# 
#

# Consed (up till at least version 19) has a bug: it can read
# consensus tags of an ACE only if they're at the end. This script
# reorganises an ACE so that consed can also read the consensus
# tags

# reads an ACE file and dumps it to STDOUT while
# placing all consensus tags to the end 

proc filterACE {filename} {

    set inct 0
    set fid [open $filename r]
    while {[gets $fid line] != -1} {
	set trimmedline [string trim $line]
	if {$inct} {
	    append ctags $line\n
	    if {$trimmedline == "\}"} {
		set inct 0
		append ctags \n
	    }
	} else {
	    if {$trimmedline == "CT\{"} {
		set inct 1
		append ctags $line\n
	    } else {
		puts $line
	    }
	}
    }
    close $fid

    puts $ctags
}

filterACE [lindex $argv 0]