Merge pull request #5 from lucaspalomodevelop/dev

add 'add' and 'edit' to help output
This commit is contained in:
Lucas Palomo Develop 2023-05-07 00:00:48 +02:00 committed by GitHub
commit 95364144d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,5 +101,7 @@ void help(int argc, char *argv[])
std::cout << " [script] - Runs a script if autom has not command with that name" << std::endl;
std::cout << " run [script] - Runs a script" << std::endl;
std::cout << " ls - Lists all scripts" << std::endl;
std::cout << " add [script] - Adds a script" << std::endl;
std::cout << " edit [script] - Edits a script" << std::endl;
std::cout << " help - Shows this help message" << std::endl;
}