Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.18 KB

README.rst

File metadata and controls

58 lines (37 loc) · 1.18 KB

everything-efu-gen

Utility for generating file lists (EFU files) for VoidTools' search utility Everything.

It's useful for allowing an instance of Everything to search remote storage on non-Windows systems (e.g. Linux), without performing the indexing over the network.

Requirements

  • Python >= 3.4
  • ruamel.yaml

Installation

pip install everything-efu-gen

Usage

# generate config
everything-efu-gen --print-sample-config > myconfig.yaml

# edit the config, then run
everything-efu-gen myconfig.yaml

# this will generate a file '.everything_index.efu' in each of the directories
# specified in the configuration file.

Then follow the documentation for adding these to Everything's index

To ensure the file lists stay up to date, schedule periodic runs using cron (or similar).

History

  • 0.0.3
    • Support ruamel.yaml >= 0.18.0
  • 0.0.2
    • Gracefully handle insufficient permissions to stat
  • 0.0.1
    • Gracefully handle stat on non-existant files
  • 0.0.0
    • Initial release