Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bom-d-van/bin
Van's handy scripts
https://github.com/bom-d-van/bin
Last synced: about 1 month ago
JSON representation
Van's handy scripts
- Host: GitHub
- URL: https://github.com/bom-d-van/bin
- Owner: bom-d-van
- Created: 2015-06-11T09:00:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-20T06:46:45.000Z (about 8 years ago)
- Last Synced: 2024-04-16T00:15:33.989Z (7 months ago)
- Language: Shell
- Size: 691 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# lsof
Find out listening port by process command name:
```
lsof -i -n -P -a -c gameoflife -F | grep 'n*:' | sed 's/n\*\://'
```# CURL
Check Gzip effect.
```
curl http://127.0.0.1:8080/css/app.css --silent -H "Accept-Encoding: gzip,deflate" --write-out "%{size_download}\n" --output /dev/null
```