4 lines
197 B
Plaintext
4 lines
197 B
Plaintext
|
#!/bin/sh
|
||
|
# fzf for zoxide
|
||
|
fzf -0 -1 -n2.. --tiebreak=index --preview="ls -a --color --human-readable --group-directories-first --file-type {2..}" --preview-window=20% | tr -s ' ' | cut -d' ' -f3-
|