5 lines
77 B
Plaintext
5 lines
77 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
[ -v "$1" ] && ss -tunple | grep "$1"
|
||
|
|
[ -z "$1" ] && ss -tunple
|