Egil Möller
unread,Oct 17, 2023, 6:11:19 PM10/17/23You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Pieshell is a Python shell environment that combines the expressiveness of shell pipelines with the power of python iterators.
This release adds support for async/await and async iterators for all shell pipelines, as well as MacOS X support.
Pieshell can be used as an interactive shell replacing e.g. bash or imported as an ordinary python module, providing a superset of the functionality of subprocess.Popen etc.
Example of what Pieshell lets you do:
for name in ls | grep("-e", ".pyc"):
rm(name)