zshrc/zsh.d/50_broot.zsh
2024-03-03 20:25:22 +01:00

16 lines
247 B
Bash

# vim: ft=zsh
function br {
local cmd cmd_file code
cmd_file=$(mktemp)
if broot --outcmd "$cmd_file" "$@"; then
cmd=$(<"$cmd_file")
command rm -f "$cmd_file"
eval "$cmd"
else
code=$?
command rm -f "$cmd_file"
return "$code"
fi
}