Andy Kipp
Andy Kipp
> and pretty much having to do it alone I believe that in case of complex work the success and the community help could be achieved by doing this: 1....
While I was in the issues around 4214 I made some big picture (current master a5292f70d100f6a7cdfee0a6c1a8309235d4acb3): 
> A lot of the features of xonsh are built on top of the executor. You can't save implementing those features until after some MVP. I think the good way...
Hi @Carreau ! Any news here will be appreciated.
Hi! Nice feature! I just want to remind you that we have [xonsh docker container](https://xon.sh/containers.html): ```python docker run -it --rm xonsh/xonsh:slim ``` This helpful when you want to do some...
There is [bashlex - Python parser for bash](https://github.com/idank/bashlex). The parser allows to create AST for bash and used in http://www.explainshell.com/. Example: ```python pip install bashlex import bashlex parts = bashlex.parse('echo...
The answer on "[Are all bash scripts compatible with `zsh`?](https://unix.stackexchange.com/questions/38172/are-all-bash-scripts-compatible-with-zsh)": > Zsh has most features of bash, but in many cases with a different syntax. I think that a good...
> bash2py Nice tool, thanks! > Does anything exist for Xonsh to Bash, or is that similarly feasible? Nope. I think it's feasible :)
Xonsh has functionality for sourcing from foreign shells ([source-bash](https://xon.sh/aliases.html#source-bash), [source-zsh](https://xon.sh/aliases.html#source-zsh)). But this functionality works only for simple cases and users create issues around wrong sourcing. I believe that we should...
The similar idea with proof of concept - #2473