diff --git a/examples.md b/examples.md index 527c9d2..7198a66 100644 --- a/examples.md +++ b/examples.md @@ -182,6 +182,32 @@ alias j=z alias jj=zz ``` +browsing +---- + +```sh +# fsfzf - browse file system +# https://github.com/D630/gist-bin-pub/tree/master/fsfzf +# Requiered: `find`, `sort` +# Optional: `file`, `w3m`, `elinks` + +# In an interactive shell without alias or configured sourcing in +# your bash configs: + +$ source fsfzf.sh +$ source fsfzf.sh ~/ # tilde expansions +$ source fsfzf.sh . +$ source fsfzf.sh bin/ # programmable completion for pathnames + +# As script: + +$ fsfzf.sh # no arguments +$ fsfzf.sh +$ fsfzf.sh ~/ # tilde expansions +$ fsfzf.sh . +$ fsfzf.sh bin/ # programmable completion for pathnames +``` + Vim scripts ===========