This file is indexed.

/usr/share/gocode/src/github.com/mattn/go-colorable/_example/title/main.go is in golang-github-mattn-go-colorable-dev 0.0.9-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
package main

import (
	"fmt"
	"os"
	. "github.com/mattn/go-colorable"
)

func main() {
	out := NewColorableStdout()
	fmt.Fprint(out, "\x1B]0;TITLE Changed\007(See title and hit any key)")
	var c [1]byte
	os.Stdin.Read(c[:])
}