This file is indexed.

/usr/share/doc/raster3d/examples/example2.sgi is in raster3d-doc 3.0-3-2.

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
#!/bin/bash
# E A Merritt March 1993
# Illustration of composed figure using Raster3D
# (assumes libimage support from 4DGifts distribution kit on SGI)
#
# figure consists of E. coli enterotoxin (protein as spheres)
# binding to GM1 pentasaccharide (sugars represented as rods)
# protruding from cell membrane (plane)
# 
# Attach atom colouring to front of PDB file
#
cat chaincolours.pdb LT.pdb > temp.tmp
#
# space-filling representation of protein atoms
#
balls -h < temp.tmp > balls.r3d
#
# draw oligosaccharide as stick model
#
cat sugarcolours.pdb sugars.pdb > temp.tmp
rods  -h < temp.tmp > sugars.r3d
#
# combine protein description with sugar description and 
# add in description of plane surface lying below both.
# At the front goes a file containing the header records
# describing the view angle, image size, lighting, etc.
#
cat header2.r3d plane.r3d sugars.r3d balls.r3d > temp.tmp
#
# Feed the composite description through the rendering program
# and display using the ipaste utility
#
render -sgi example2.rgb  < temp.tmp 
ipaste example2.rgb
#
# Clean up before leaving
#
rm -f temp.tmp balls.r3d sugars.r3d example.rgb