This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env zsh | |
# leave コマンドで設定したタイマーを解除するスクリプト | |
ps -eo pid,stat,lstart,args | | |
grep -E '[l]eave' | | |
fzf --reverse | | |
awk '{print $1}' | | |
xargs kill |