/usr/bin/ovitos is in ovito 0.9.5-3.
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 | #!/usr/bin/env python
#
# This Python script launches OVITO in scripting mode and turns off
# the graphical user-interface.
#
# It should be invoked like this:
#
# ./ovitos MyScript.py [param1] [param2] ...
#
from sys import argv
from os import system
from os.path import split, abspath
executable = split(abspath(argv[0]))[0] + "/ovito"
arguments = ""
for a in argv[1:]:
arguments = arguments + " \"" + a + "\""
system(executable + " --nobanner --nogui --script %s" % arguments)
|