Forrest logo
back to context overview

boxes

List of commands for boxes:

  • boxes:tldr:00eeb boxes: Draw a box around a string.
    $ echo "${string}" | boxes
    try on your machine
    explain this command
  • boxes:tldr:46d38 boxes: Remove a box from a string.
    $ echo "${string}" | boxes -r
    try on your machine
    explain this command
  • boxes:tldr:711d2 boxes: Draw a box with a specific design around a string.
    $ echo "${string}" | boxes -d ${parchment}
    try on your machine
    explain this command
  • boxes:tldr:7af50 boxes: Draw a box with a width of 10 and a height of 5.
    $ echo "${string}" | boxes -s ${10}x${5}
    try on your machine
    explain this command
  • boxes:tldr:d82d5 boxes: Draw a box with centered text.
    $ echo "${string}" | boxes -a c
    try on your machine
    explain this command
back to context overview