diff options
author | ben <ben@nagy.contact> | 2025-05-03 14:41:13 -0700 |
---|---|---|
committer | ben <ben@nagy.contact> | 2025-05-03 14:41:13 -0700 |
commit | ea687c769521b3139c8547a2d4a839842fa7b0fe (patch) | |
tree | f4805588bb59ca15e96d8b71124c4aafd5dd40cb /scripts/util/killpid.sh | |
parent | 16725b034eeb7122f4174f08221ab7f07b6abbf1 (diff) |
added scripts
Diffstat (limited to 'scripts/util/killpid.sh')
-rwxr-xr-x | scripts/util/killpid.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/util/killpid.sh b/scripts/util/killpid.sh new file mode 100755 index 0000000..34a738a --- /dev/null +++ b/scripts/util/killpid.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +ps -aux | fzf | awk '{print $2}' | xargs -r kill |