6 lines
50 B
Bash
Executable File
6 lines
50 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PORT=$1
|
|
kill -l $(lsof -t -i:$PORT)
|
|
|