UNPKG

wsh.js

Version:

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

14 lines (11 loc) 341 B
export default { exec: async (term, streams, cmd/* , opts, args */) => { await streams.stderr.write(`Unrecognized command: ${cmd}\n`); }, completion: async (term, cmd, name, value) => { if (!value) { value = cmd; } return term.util.bestMatch(value, term.shell._commands()); } };