diff --git a/Modules/System.js b/Modules/System.js index 4292949..5e23815 100644 --- a/Modules/System.js +++ b/Modules/System.js @@ -230,11 +230,14 @@ function whatIsCommand(input) { // Use echo to display the meaning or a message if the command is not found if (meaning) { echo(command + ":" + meaning); + console.log(command + ":" + meaning); } else { echo(`Command '${command}' not found.`); + console.log(`Command '${command}' not found.`); } } else { echo("Please use the format 'whatis '."); + console.log("Please use the format 'whatis '."); } }