4 lines
109 B
Bash
Executable file
4 lines
109 B
Bash
Executable file
#!/bin/sh
|
|
# Listing for quick directory switcher based on zoxide and fzf
|
|
set -o noglob
|
|
zoxide query -sl "$@"
|