/usr/share/python-ase/doc/ase/cmdline.rst is in python-ase-doc 3.9.1.4567-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 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | .. highlight:: bash
.. index:: command line tools
.. _cli:
=========================
Command line tools in ASE
=========================
ASE has the following command line tools:
* :ref:`ase-gui`: graphical user interface
* :ref:`ase-db`: manipulation of databases
* ase-build: build simple molecule or bulk structure
* ase-run: run calculations with ASE's calculators
* ase-info
Help
====
For all command-line tools, you can do::
ase-xxx --help
or ``ase-xxx -h`` to get help.
.. _bash completion:
Bash completion
===============
You can enable bash completion by adding this line to your ``~/.bashrc``::
complete -o default -C _ase_bash_complete.py ase-db ase-run ase-build ase-info ase-gui
|