Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rpdelaney/xontrib-brace-expansion
Implements simple brace expansion in xonsh
https://github.com/rpdelaney/xontrib-brace-expansion
xonsh xontrib
Last synced: 3 months ago
JSON representation
Implements simple brace expansion in xonsh
- Host: GitHub
- URL: https://github.com/rpdelaney/xontrib-brace-expansion
- Owner: rpdelaney
- License: mit
- Created: 2023-12-02T17:50:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-13T17:41:24.000Z (7 months ago)
- Last Synced: 2024-09-19T01:24:53.929Z (4 months ago)
- Topics: xonsh, xontrib
- Language: Python
- Homepage: https://pypi.org/project/xontrib-brace-expansion
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
xontrib-brace-expansion
=======================
|VERSION|.. |VERSION| image:: https://img.shields.io/pypi/v/xontrib-brace-expansion
:target: https://pypi.org/project/xontrib-brace-expansionImplements simple brace expansion:
.. code:: console
@ echo a{d,c,b}e
ade ace abeNested expansion is not supported:
.. code:: console
@ echo /usr/{ucb/{ex,edit},lib/{ex?.?*,how_ex}}
SyntaxError: Unmatched "}" at line 1, column 16See also:
* https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html
Usage
-----.. code-block :: console
xpip install xontrib-brace-expansion
xontrib load brace_expansion