Skip to content

General Commands usefull in daily software development work

Notifications You must be signed in to change notification settings

vipreshjha/Commands

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

Commands

General Commands usefull in daily software development work

Find and Process running on a specific port Unix

kill -9 `sudo netstat -lnpt | grep -i -n ":3000" | awk -F" " '{print $7}' | awk -F"/" '{print $1}'`

Find Process running on a specific port Windows

netstat -aon | find /i "listening" | netstat -ano | findstr :4000

Kill process in Windows

taskkill /PID 26148 /F

Start a http server i Python

python3 -m http.server 8888

Convert between Encodings

iconv -f utf-16le -t utf-8 /mnt/c/Users/20250819120830/data.csv | awk -F',' '$7 ~ /793007/'

About

General Commands usefull in daily software development work

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published