有没有办法让 zsh 在 REPORTTIME 之后运行命令?

有没有办法让 zsh 在 REPORTTIME 之后运行命令?

如果某个进程耗时超过 REPORTTIME,zsh 会在进程完成时打印时间。除了这个之外,有没有办法让它运行自定义命令?(我想使用通知发送来让我知道进程已完成执行)

答案1

我也有同样的想法。快速谷歌了一下,发现;我做了一些改动。将其放入你的 zshrc 中:

if [[ -x `which notify-send` ]]; then
    notify-preexec-hook() {
        zsh_notifier_cmd="$1"
        zsh_notifier_time="`date +%s`"
    }

    notify-precmd-hook() {
        local time_taken

        if [[ "${zsh_notifier_cmd}" != "" ]]; then
            time_taken=$(( `date +%s` - ${zsh_notifier_time} ))
            if (( $time_taken > $REPORTTIME )); then
                notify-send "task finished" \
                    "'$zsh_notifier_cmd' exited after $time_taken seconds"
            fi
        fi
        zsh_notifier_cmd=
    }
fi

[[ -z $preexec_functions ]] && preexec_functions=()
preexec_functions=($preexec_functions notify-preexec-hook)

[[ -z $precmd_functions ]] && precmd_functions=()
precmd_functions=($precmd_functions notify-precmd-hook)

我非常满意!:)

相关内容