list - List available profiles#

Usage#

e4s-cl profile list [ PATTERN ] [ OPTIONS ]

Options#

-s, --short Print the list with no formatting

Description#

Print a list of all the recorded profiles matching a given pattern, along with a brief description.

Pass option -s to print only the names and disable formatting.

$ e4s-cl profile list 
== Profile Configurations (/home/user/.local/e4s_cl/user.json) ===========

+----------+---------------+---------+-------+-----------+-------+
| Selected |     Name      | Backend | Image | Libraries | Files |
+==========+===============+=========+=======+===========+=======+
|          |   MPICH@3.4.2 |     N/A |   N/A |    16     |   1   |
+----------+---------------+---------+-------+-----------+-------+
|    *     | OpenMPI@4.1.1 |     N/A |   N/A |    21     |  73   |
+----------+---------------+---------+-------+-----------+-------+

$ e4s-cl profile list MPIC
== Profile Configurations (/home/user/.local/e4s_cl/user.json) =========

+----------+-------------+---------+-------+-----------+-------+
| Selected |    Name     | Backend | Image | Libraries | Files |
+==========+=============+=========+=======+===========+=======+
|          | MPICH@3.4.2 |     N/A |   N/A |    16     |   1   |
+----------+-------------+---------+-------+-----------+-------+


$ e4s-cl profile list -s
MPICH_3.4.2
OpenMPI_4.1.1

Configuration#

The following configuration option is available:

Configuration variable

Type

Default

Description

profile_list_columns

list

["selected", "name", "backend", "image"]

Columns to display when running the profile list command. Available columns are: selected, name, libraries, files, backend and image.