Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```