mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
19 lines
328 B
ReStructuredText
19 lines
328 B
ReStructuredText
.. _aliases:
|
|
|
|
********************
|
|
Aliases
|
|
********************
|
|
|
|
xonsh builtin aliases.
|
|
|
|
xexec
|
|
====================
|
|
xexec uses the ``os.execvpe()`` function to replace the xonsh process with
|
|
the specified program. This provides the functionality of the bash ``exec``
|
|
builtin.
|
|
|
|
.. code-block:: bash
|
|
|
|
>>> xexec bash
|
|
bash $
|
|
|