Created
May 13, 2023 10:22
-
-
Save a1ip/2d1e2b1f970f73d89db582cf97a5e046 to your computer and use it in GitHub Desktop.
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
#seq man page | |
#-s, --separator=STRING | |
# use STRING to separate numbers (default: \n) | |
#Original Honey Comb | |
seq -s "_/..\\_" 999|tr -d "0-9" | |
#brick wall | |
seq -s "____|" 999|tr -d "0-9" | |
#Virtcal Bricks | |
seq -s "| |__" 999|tr -d "0-9" | |
#other fun patterns | |
seq -s "|____|" 999|tr -d "0-9" | |
#using Unicode | |
seq -s "▗▖" 9999|tr -d "0-9" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment