dotfiles/.local/bin/scripts/zf

9 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