import { Tty } from "../Tty.ts";

window.Terminal.registerCommand("echo", function(this: Tty, ...args)  {
    this.print(args.join(' ').replace(/\$([A-Z]*)/ig, (value) => {
        return this.variables[value.replace('$', '')] || ''
    }))
    return 0
});
