You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -78,17 +78,18 @@ While it's not recommended, you can download the Bito CLI binary from our reposi
78
78
### Bito CLI Commands
79
79
#### help
80
80
- On MAC/Linux:
81
-
run ```./bito --help``` or ```./bito config --help```
81
+
run ```bito --help``` or ```bito config --help```
82
82
83
83
- On Windows:
84
84
run ```bito --help``` or ```bito config --help```
85
85
86
86
#### Bito CLI MyPrompt (Automation using Bito CLI)
87
87
##### On MAC/Linux:
88
88
89
-
- run ```./bito –p writedocprompt.txt -f mycode.js``` for non-interactive mode in Bito (where writedocprompt.txt will contain your prompt text such as "Explain the code below in brief" and mycode.js will contain the actual code on which the action is to be performed).
89
+
- run ```bito -v``` or ```bito --version``` to print the version number of Bito CLI installed currently.
90
+
- run ```bito –p writedocprompt.txt -f mycode.js``` for non-interactive mode in Bito (where writedocprompt.txt will contain your prompt text such as "Explain the code below in brief" and mycode.js will contain the actual code on which the action is to be performed).
90
91
91
-
- run ```cat file.txt | ./bito``` to directly cat a file and pipe it to bito and get instant result for your query.
92
+
- run ```cat file.txt | bito``` to directly cat a file and pipe it to bito and get instant result for your query.
92
93
93
94
- run ```cat inventory.sql | bito -p testdataprompt.txt > testdata.sql``` to redirect your output directly to a file (where -p can be used along with cat to perform prompt related action on the given content).
94
95
@@ -97,9 +98,10 @@ run ```bito --help``` or ```bito config --help```
97
98
- run ```echo "give me code for bubble sort in python" | bito``` to instantly get response for your queries using Bito CLI.
98
99
99
100
##### On Windows:
101
+
- run ```bito -v``` or ```bito --version``` to print the version number of Bito CLI installed currently.
100
102
- run ```bito – p writedocprompt.txt -f mycode.js``` for non-interactive mode in Bito (where writedocpromot.txt will contain your prompt text such as "Explain the code below in brief" and mycode.js will contain the actual code on which the action is to be performed).
101
103
102
-
- run ```type file.txt | ./bito``` to take input from file in windows and pipe it to bito and get instant result for your query.
104
+
- run ```type file.txt | bito``` to take input from file in windows and pipe it to bito and get instant result for your query.
103
105
104
106
- run ```type inventory.sql | bito -p testdataprompt.txt > testdata.sql``` to redirect your output directly to a file (where -p can be used along with type to perform prompt related action on the given content).
0 commit comments