Displaying 1 result from an estimated 1 matches for "filtered_list".
Did you mean:
filter_list
2024 Apr 22
2
How to use Xapian Omega directly (i.e., without using `recoll` and `xapiandb`) ... Full Set Of Questions Below:
...an 3 Characters: After
generating the extensive list, to post-process it to filter out
strings greater than 3 characters. I can use various tools and
scripting languages like grep, awk, or Python to accomplish this task.
For example, using grep:
$grep -E '\b\w{4,}\b' extensive_list.txt > filtered_list.txt
This command should theoretically filter out words with more than 3
characters from the extensive_list.txt and save the result in
filtered_list.txt.
But how do I create an index for a pre-determined set of phrases?
Would I require a specific script using omgrep, like using?:
$omgrep "my p...