UNPKG

wsh.js

Version:

WebSHell provides a toolkit for building bash-like command line consoles for web pages.

12 lines (9 loc) 258 B
export default { desc: "Print help", exec: async (term, streams/* , cmd, opts, args */) => { const items = term.shell._commands(); for (const item of items) { await streams.stdout.write(` ${item}\n`); } } };