-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterminal.js
More file actions
13 lines (13 loc) · 785 Bytes
/
Copy pathterminal.js
File metadata and controls
13 lines (13 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
function welcome() {
console.log(`There are three commands:
1) sem-look <your sentence for desired command> p="<argument>" => to show a command
Arguments are optional. For example: sem-look list files p="subdir"
2) sem-exec <your sentence for desired command> p="<argument>" => to execute a command
Arguments are optional. For example: sem-exec compare files p="a.txt b.txt"
3) sem-suggest "<intent>" "<command>" "<dangerLevel>" => to suggest a new (intent, command, dangerLevel) triple
- Order of parameters are important!
- Please suggest a command which is working on your current operating system!
For more information: https://github.com/hcoz/sem-cli`);
}
// show the welcome message
welcome();