Skip to content

Instantly share code, notes, and snippets.

@sakkke
Created September 5, 2021 09:20
Show Gist options
  • Save sakkke/0b62ca12be50a35dddf724c9b38196c6 to your computer and use it in GitHub Desktop.
Save sakkke/0b62ca12be50a35dddf724c9b38196c6 to your computer and use it in GitHub Desktop.
Bash version of <hr>
#!/bin/bash
(shopt -s checkwinsize)
for i in $(seq 1 $COLUMNS); do
printf ─
done
echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment