My Current Project
I am trying to make a terminal-style webpage using jQuery Terminal.
My Problem
I cannot figure out how to add more than one command to the terminal.
Here's my code:
$('body').terminal({
hello: function(name) {
this.echo('Hello, ' + name +
'. Welcome to the Rapocrythia command line.');
}
}, {
greetings: 'Rapocrythia Command Line[Version 0.0.1]\n(c) Copyright Rapocrythia Systems, Inc. All Rights Reserved.'
}
);
Just add more properties to the first argument.
If you type
add 10 15
it will print25
.