Simple fuzzy-searching function and command line tool.
cargo install close_enough
ce
commandThis is a cd
-like command for fuzzily changing directories. See examples further down.
close_enough
as abovecle -ce-script bash > ce.sh
to generate the shell scriptce.sh
in your .bashrc
, .profile
, or similar```sh ~$ cle duck --inputs blueandgoldmacaw duckbilledplatypus angrydog
duckbilledplatypus
~$ cle dbp --inputs blueandgoldmacaw duckbilledplatypus angrydog
duckbilledplatypus ```
```sh ~$ ls
myfile.txt theirfile.txt yourfile.txt ~$ ls | cle my myfile.txt ```
sh
~$ ce my lo dir pa
~/my/long/directory/path$
sh
~/my/long/directory/path$ ce ..
~/my/long/directory$
sh
~/my/long/directory/path$ ce ..3
~/my$
sh
~/my/long/directory/path$ ce ..my other dir pa
~/my/other/directory/path$
sh
~$ ce / u lo sh
/usr/local/share$ ce ~
~$