f334607d4f
- d/di alias based on zf, locz and zfz - update clean function
8 lines
162 B
Bash
Executable file
8 lines
162 B
Bash
Executable file
#!/bin/sh
|
|
# Listing for quick directory switcher based on zoxide and fzf
|
|
if test -d "$1" -o "$1" = "-"
|
|
then echo "$@"
|
|
else
|
|
set -o noglob
|
|
zoxide query -sl "$@"
|
|
fi
|