Skip to content

Instantly share code, notes, and snippets.

@a1ip
Created May 13, 2023 10:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a1ip/2d1e2b1f970f73d89db582cf97a5e046 to your computer and use it in GitHub Desktop.
Save a1ip/2d1e2b1f970f73d89db582cf97a5e046 to your computer and use it in GitHub Desktop.
#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