/usr/share/python-ase/doc/cmdline.rst is in python-ase-doc 3.12.0-2.
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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | .. highlight:: bash
.. index:: command line tools
.. _cli:
==================
Command line tools
==================
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
Python -m tricks
================
Some ASE modules can be invoked directly form the command line using ``python
-m``.
:ref:`stylecheck`::
$ python -m ase.utils.stylecheck source.py
Equation of state::
$ python -m ase.eos [-p] traj-file, ...
:ref:`iso surface`::
$ python -m ase.visulaize.mlab [options] filename
Determine file type(s)::
$ python -m ase.io.formats file ...
Convert old db-files to new::
$ python -m ase.db.convert db-file
Show content of aff-file::
$ python -m ase.io.aff [options] aff-file [item number]
:ref:`convert`::
$ python -m ase.io.pickletrajectory a1.traj [a2.traj ...]
Help
====
For all command-line tools, you can do::
$ ase-gui --help
$ python -m ase.eos --help
to get help (or ``-h`` for short).
.. _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
|