zshrc/zsh.d/50_broot.zsh
2025-06-11 06:09:30 +02:00

16 lines
281 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
}