As a simple example, I want to write a CLI script which can print = across the entire width of the terminal window.
=
#!/usr/bin/env php
yes = | head -n$(($(tput lines) * $COLUMNS)) | tr -d '\n'