Created
December 4, 2024 08:03
-
-
Save alpineyahoo/3ac1a4036281923a34988cd2dc07b142 to your computer and use it in GitHub Desktop.
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment