This file is indexed.

/usr/bin/ftpcloudfs is in ftp-cloudfs 0.25.2+20140217+git2a90c1a2eb-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
#! /usr/bin/python
"""
FTP Cloud Files - A FTP Proxy to Cloud FIles.
"""
import sys
import os

sys.path.append(
    os.path.abspath(
        os.path.join(
            os.path.dirname(
                sys.argv[0]), "..")))

from ftpcloudfs.main import Main

if __name__ == '__main__':
    main = Main()
    main.main()