Skip to content

Instantly share code, notes, and snippets.

@cabrinha
Created May 2, 2015 00:09
Show Gist options
  • Save cabrinha/b67187f40583ef7daad7 to your computer and use it in GitHub Desktop.
Save cabrinha/b67187f40583ef7daad7 to your computer and use it in GitHub Desktop.
tree of the xonsh hier
[ realeyes@psyche ~/devel/brew/xonsh ]$ tree
.
├── xonsh-0.1.0.tar.gz
└── xonsh-master
├── CONTRIBUTING -> docs/devguide.rst
├── README.rst
├── docs
│   ├── Makefile
│   ├── _static
│   │   ├── ascii_conch.png
│   │   ├── ascii_conch_full_color.png
│   │   ├── ascii_conch_part_color.png
│   │   ├── magic_conch.ico
│   │   ├── numpy_friendly.css_t
│   │   ├── orig_conch.png
│   │   ├── xonsh-demo.gif
│   │   └── xonsh-demo.webm
│   ├── aliases.rst
│   ├── api
│   │   ├── aliases.rst
│   │   ├── ast.rst
│   │   ├── built_ins.rst
│   │   ├── completer.rst
│   │   ├── dirstack.rst
│   │   ├── environ.rst
│   │   ├── execer.rst
│   │   ├── imphooks.rst
│   │   ├── index.rst
│   │   ├── inspectors.rst
│   │   ├── jobs.rst
│   │   ├── lexer.rst
│   │   ├── main.rst
│   │   ├── openpy.rst
│   │   ├── parser.rst
│   │   ├── pyghooks.rst
│   │   ├── shell.rst
│   │   └── tools.rst
│   ├── conf.py
│   ├── devguide.rst
│   ├── faq.rst
│   ├── index.rst
│   ├── previous
│   │   ├── 0.1_release_notes.rst
│   │   └── index.rst
│   ├── todo.rst
│   └── tutorial.rst
├── license
├── recipe
│   └── meta.yaml
├── requirements.txt
├── scripts
│   └── xonsh
├── setup.py
├── tests
│   ├── sample.xsh
│   ├── test_aliases.py
│   ├── test_builtins.py
│   ├── test_execer.py
│   ├── test_imphooks.py
│   ├── test_lexer.py
│   ├── test_parser.py
│   ├── test_tools.py
│   ├── tools.py
│   └── xpack
│   ├── __init__.py
│   ├── relimp.xsh
│   ├── sample.xsh
│   └── sub
│   ├── __init__.py
│   └── sample.xsh
└── xonsh
├── __init__.py
├── aliases.py
├── ast.py
├── built_ins.py
├── completer.py
├── dirstack.py
├── environ.py
├── execer.py
├── imphooks.py
├── inspectors.py
├── jobs.py
├── lexer.py
├── main.py
├── openpy.py
├── parser.py
├── pyghooks.py
├── shell.py
└── tools.py
11 directories, 76 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment