mirror of
https://codeberg.org/diginaut/dotfiles.git
synced 2026-02-04 17:00:26 +01:00
7 lines
99 B
Bash
Executable File
7 lines
99 B
Bash
Executable File
#!/bin/bash
|
|
if [ -z "$1" ]; then
|
|
echo "Provide a TCP port number"
|
|
else
|
|
sudo fuser -v $1/tcp
|
|
fi
|