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
# Providing console output from https://github.com/notthetup/leaselist | |
# v1: hard way from web page source | |
scrapelease() { | |
curl -sS my.leaselist.host |\ | |
tail -2 |\ | |
head -1 |\ | |
sed 's/>/>\n/g' |\ | |
grep Reactive |\ | |
sed 's/{/{\n/g' |\ |