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
# for windows | |
PS C:\Users\sayem> netstat -aon | findstr :3000 | |
TCP 0.0.0.0:3000 0.0.0.0:0 LISTENING 12008 | |
TCP [::]:3000 [::]:0 LISTENING 12008 | |
PS C:\Users\sayem> taskkill /PID 12008 /F | |
SUCCESS: The process with PID 12008 has been terminated. | |
PS C:\Users\sayem> | |
#for linux | |
lsof -i :3000 |
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
#aliases | |
alias x="exit" | |
alias c="clear" | |
#alias firefox='/opt/firefox/firefox' | |
alias pnd="pnpm dev" | |
alias nd="npm run dev" | |
alias ns="npm start" | |
alias nb="npm run build" |