##// END OF EJS Templates
update kerrnelspec doc...
update kerrnelspec doc - there were still references to share/ipython - we use `python -m IPython.kernel` in argv - display_name is "Python 3"

File last commit:

r16136:94a4d14e
r20269:21cb9fa9
Show More
list_subdirs.ipy
5 lines | 162 B | text/plain | TextLexer
# A simple IPython script that lists files in all subdirs
from IPython.display import FileLinks, display
dirs =!ls -d */
for d in dirs:
display(FileLinks(d))