Benutzer:Hundsrose/banner (Unix)

aus Wikipedia, der freien Enzyklopädie
< Benutzer:Hundsrose
Dies ist die aktuelle Version dieser Seite, zuletzt bearbeitet am 17. April 2020 um 13:35 Uhr durch imported>Xqbot(627628) (Bot: Ersetze veraltetes <source> tag und veralteten "enclose"-Parameter; kosmetische Änderungen).
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Datei:UnderCon icon.svg Dieser Artikel (banner (Unix)) ist im Entstehen begriffen und noch nicht Bestandteil der freien Enzyklopädie Wikipedia.
Wenn du dies liest:
  • Der Text kann teilweise in einer Fremdsprache verfasst, unvollständig sein oder noch ungeprüfte Aussagen enthalten.
  • Wenn du Fragen zum Thema hast, nimm am besten Kontakt mit dem Autor Hundsrose auf.
Wenn du diesen Artikel überarbeitest:
  • Bitte denke daran, die Angaben im Artikel durch geeignete Quellen zu belegen und zu prüfen, ob er auch anderweitig den Richtlinien der Wikipedia entspricht (siehe Wikipedia:Artikel).
  • Nach erfolgter Übersetzung kannst du diese Vorlage entfernen und den Artikel in den Artikelnamensraum verschieben. Die entstehende Weiterleitung kannst du schnelllöschen lassen.
  • Importe inaktiver Accounts, die länger als drei Monate völlig unbearbeitet sind, werden gelöscht.

The Unix banner Programm outputs a large ASCII-Art version of the text that is supplied to it as its Argumente der Kommandozeile. One use of the command is to create highly visible separator pages for Druckaufträge.[1]

Anwendung

Each argument is truncated at 10 characters and printed on a "line" of its own. To print multiple words on a single line, they must therefore be passed as a single argument, which is done from the Shell by escaping or quoting the words as appropriate.[1]

A related and more flexible program is FIGlet, which can display text in different fonts and orientations.[2]

Einbindung

The way that the program is implemented internally is antiquated. The character fonts used are hardwired into the program code itself, as statically initialized data structures. Two data structures are used. The first is a data table comprising a sequence of printing instructions that encode the bitmap for each character (in an encoding specific to the banner program). The second is an index into that table that indicates, for each character code, where the printing instructions for that character begin and end.[3]

Both data structures were hand-written. Spinellis observes that it is "difficult to come up with a more error-prone and unmaintainable data format". He observes a stark contrast between the source code of the banner program and automatically generated source code for encoding computer fonts into program data (using the 6-by-10 font data in the source code of the mac68k port of NetBSD for comparison). The automatically generated data are commented, documenting with ASCII art how the bit patterns were derived. The automatically generated data were generated from a bitmap file, itself generated using a bitmap creation/editing program with a graphical user interface. And the automatically generated data are organized in a straightforward and obvious manner — a fixed-length sequence of unencoded bytes for each glyph.[3]

Spinellis further observes that in modern computer systems it is seldom sensible to embed such data into the program executable image itself, the performance gains of doing so being negligible. Doing so makes it difficult to adapt the program to different locales, or to maintain the program. The more preferred approach in modern systems is to store such data in a separate data file, distinct from the program executable image file, or in a resource fork of the program, that the program reads at run-time.[3]

Versionen

A partial list of versions:

  • By AT&T, in UNIX System V.[4][5][6]
  • By Cedar Solutions. Runs on modern Linux systems as of 2008. Prints horizontally only with a fixed size.
  • By Mary Ann Horton at the University of California Berkeley, distributed as part of the bsdmainutils package, under the name printerbanner. Runs on modern Linux, GNU Hurd, and Mac OS X systems as of 2008. Prints vertically with variable size font.

Beispielausgaben

From the terminal-oriented banner program:

 $ banner 'Hello!'
 #     #                                   ###
 #     #  ######  #       #        ####    ###
 #     #  #       #       #       #    #   ###
 #######  #####   #       #       #    #    #
 #     #  #       #       #       #    #
 #     #  #       #       #       #    #   ###
 #     #  ######  ######  ######   ####    ###

One letter from the printer-oriented banner program as usually found in BSD and derivatives:

 $ banner -w80 "a"
                          #####
                        #########
                     ###############        ###
                    ################      ######
                   ##################     ########
                   #####         #####    #########
                   ####           ####      ##  ###
                   ###            ####           ##
                   ###            ###            ##
                   ###            ###           ###
                    ####         ###           ####
                      #############################
                    ##############################
                   ##############################
                   ############################
                   ###########################
                   ###
                   #
                   #

Display a continuous clock for 1000 seconds:

 $ repeat 1000 sh -c '( clear ; date +" %H.%M.%S" | xargs banner ; sleep 1)'
   #     #####             #     #####          ####### #######
  ##    #     #           ##    #     #         #       #
 # #    #                # #          #         #       #
   #    ######             #     #####          ######  ######
   #    #     #   ###      #    #         ###         #       #
   #    #     #   ###      #    #         ###   #     # #     #
 #####   #####    ###    #####  #######   ###    #####   #####

Siehe auch

Einzelnachweise

  1. a b Practical UNIX. Que Publishing, 2000, ISBN 0-7897-2250-X, S. 220–221.
  2. Arnold Robbins: UNIX in a Nutshell. O'Reilly, 2006, ISBN 0-596-10029-9, S. 24.
  3. a b c Diomidis Spinellis: Code Quality. Adobe Press, 2006, ISBN 0-321-16607-8, S. 70–71.
  4. Hatch: System V in AIX and Dynix/ptx. 19 April 2004. Archiviert vom Original am 26. Mai 2009. Abgerufen am 23. Juli 2008.
  5. AIX: Document 157-28-E. In: zen77087.zen.co.uk . (Seite nicht mehr abrufbar)
  6. Package: sysvbanner (1.0.15 and others). Debian. Archiviert vom Original am 20. Dezember 2016. Abgerufen am 6. Mai 2010.

Weiterführende Literatur

  • Amir Afzal: The banner command. In: UNIX Unbounded. Prentice Hall, 2008, ISBN 0-13-119449-6, S. 462–463.

Externe Links

[[Kategorie:Unix-Software]]