mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-06 09:20:57 +01:00
20 lines
328 B
ReStructuredText
20 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 $
|
||
|
|