UNPKG

wsh.js

Version:

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

9 lines (7 loc) 186 B
export default { desc: "Echo string", args: [ "string" ], exec: async (term, streams, cmd, opts, args) => { return await streams.stdout.write(args.string); } };