oh-my-zsh/plugins/nohup/nohup.plugin.zsh

34 lines
908 B
Bash
Raw Normal View History

2017-04-06 07:02:28 +00:00
# ------------------------------------------------------------------------------
# Description
# -----------
#
# nohup will be inserted before the command and a redirect will be appended
#
# ------------------------------------------------------------------------------
# Authors
# -------
#
# * Michele Renda <michele.renda@gmail.com>
#
# ------------------------------------------------------------------------------
nohup-command-line() {
[[ -z $BUFFER ]] && zle up-history
if [[ $BUFFER == nohup\ * ]]; then
BUFFER="${BUFFER#nohup }"
BUFFER="${BUFFER%\ &\>*}"
2017-04-06 07:02:28 +00:00
else
tokens_slash=("${(@s|/|)BUFFER}")
tokens_space=("${(@s/ /)tokens_slash[-1]}")
2017-04-06 07:02:28 +00:00
i=1
if [[ $tokens_slash[1] == sudo ]]; then
2017-04-06 07:02:28 +00:00
(( i++ ))
fi
BUFFER="nohup $BUFFER &> $tokens_space[$i].out &"
2017-04-06 07:02:28 +00:00
fi
}
zle -N nohup-command-line
# Defined shortcut keys: [Ctrl] [h]
bindkey "\Ch" nohup-command-line