This file is indexed.

/usr/share/xcrysden/examples/Scripting/pwofilter.tcl is in xcrysden-data 1.5.53-1.

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
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
# ------------------------------------------------------------------------
#****** ScriptingExamples/pwfilter.tcl ***
#
# NAME
# pwfilter.tcl -- check of PWscf Output filter
#
# USAGE
# xcrysden --script pwofilter.tcl
#
# COPYRIGHT
# Anton Kokalj (C) 2004
#
# CREATION DATE
# Sometime in February 2004
# 
# SOURCE

global system

set dir [file join $env(XCRYSDEN_TOPDIR) examples PWSCF_files]
cd $dir
#scripting::filter::pwscfOutput -lc EthAl001-2x2.out 2 {
#    1 13   2 6   3 1 
#}
scripting::filter::pwscfOutput -lc CH3Rh111.out 3

# ------------------------------------------------------------------------
# display the structure in appropriate display-mode
# ------------------------------------------------------------------------

scripting::lighting On
scripting::displayMode3D spacefill

# ------------------------------------------------------------------------
# zoom and rotate the structure 
# ------------------------------------------------------------------------

scripting::zoom   0.4
scripting::rotate x +60 
scripting::rotate y +20 


# ------------------------------------------------------------------------
# display 3x3x1 cell
# ------------------------------------------------------------------------
scripting::buildCrystal 3 3 1

#******