enrico9034 / zsh-watch-plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WATCH

Easily prefix your current or previous commands with watch by pressing CTRL + W

  1. Clone this repository into $ZSH_CUSTOM/plugins (by default ~/.oh-my-zsh/custom/plugins)
git clone https://github.com/enrico9034/watch-plugin-zsh.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/watch
  1. To use it, add watch to the plugins array in your zshrc file:
plugins=(... watch)
  1. Start a new terminal session.

Usage

Current typed commands

Say you have typed a long command and forgot to add watch in front:

$ kubectl get pod -n namespace

By pressing the CTRL + W key, you will have the same command with watch prefixed without typing:

$ watch kubectl get pod -n namespace

Previous executed commands

Say you want to delete a system file and denied:

$ kubectl get pod -n namespace
$

By pressing the CTRL + W key, you will have the same command with watch prefixed without typing:

$ rm some-system-file.txt
$
$ kubectl get pod -n namespace
$

This plugin is based on official sudo plugin

sudo official plugin: https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/sudo

About

License:MIT License


Languages

Language:Shell 100.0%