Last active
September 3, 2021 17:53
-
-
Save Cristuker/29b1848f99c1a6fc2ec3a9d2f423ede5 to your computer and use it in GitHub Desktop.
Linux utils
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get the process running on port 3333 and kill it! Change 3333 to use on another ports. | |
kill -9 "$(lsof -w -n -i tcp:3333 | awk 'FNR == 2 {print $2=$2}')" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment