#!/usr/bin/env bash
# 実行に必要なコマンド
# jq (brew install jq)
# sponge (brew install sponge または brew install moreutils)
# tqdm (pipx install tqdm)
# sd (brew install sd)
# curl
This file contains 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 |