5 lines
148 B
Bash
5 lines
148 B
Bash
#!/bin/bash
|
|
|
|
PORT=$(grep '^port:' /cherrypick/.config/default.yml | awk 'NR==1{print $2; exit}')
|
|
curl -s -S -o /dev/null "http://localhost:${PORT}"
|