We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 102bff5 + 77ed27d commit 52b5492Copy full SHA for 52b5492
2 files changed
specs/shell/kill_processes_at_port.yaml
@@ -0,0 +1,9 @@
1
+name: Kill processes at port
2
+description: Kill processes at a port.
3
+author: Maurice Gerhardt
4
+author_url: https://github.com/heymage
5
+tags: ["macos", "shell"]
6
+command: kill $(lsof -t -i:{{port}})
7
+arguments:
8
+ - name: port
9
+ description: The port where processes should be killed
specs/shell/list_processes_at_port.yaml
+name: List processes at port
+description: List processes at a port to see if there are running processes.
+command: lsof -i:{{port}}
+ description: The port that should be checked
0 commit comments