Skip to content

Commit 8aec11c

Browse files
committed
Fix for 'help' command
I forgot to add the new command to 'help' 😐
1 parent 6b2ae01 commit 8aec11c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rl.on('line', (input) => {
1717
args = input.split(' ');
1818
switch (args[0]) {
1919
case 'help':
20-
console.log('\n save Saves output to the text file.\n interval <int> Sets the interval. Default is 600ms.\n path <path> Sets path to your dictionary.\n author Shows author of the app.\n clear Clears the console.\n exit Quits the app.\n start Starts the bruteforce.\n');
20+
console.log('\n save Saves output to the text file.\n check <string> Checks single URL specified in argument. \n interval <int> Sets the interval. Default is 600ms.\n path <path> Sets path to your dictionary.\n author Shows author of the app.\n clear Clears the console.\n exit Quits the app.\n start Starts the bruteforce.\n');
2121
rl.prompt();
2222
break;
2323
case 'exit':

0 commit comments

Comments
 (0)