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
In Windows, wildcard expansion is supposed to be done on the command side, but `dendro_text` itself does not have wildcard expansion capability.
194
-
195
-
If you want to specify files with wildcards in a windows environment, use Powershell's command substitution feature. For example, instead of the following command line:
196
-
197
-
```sh
198
-
dendro_text *.txt
199
-
```
200
-
201
-
Use the following:
202
-
203
-
```sh
204
-
dendro_text $(ls *.txt)
205
-
```
206
-
207
191
### The default tokenization
208
192
209
193
The default tokenization (extracting words from the text) method is to split text at the point where the type of letter changes.
0 commit comments