Your message dated Sat, 5 Apr 2025 14:03:56 +0000
with message-id <Z/e4tenwi7mpb...@master.debian.org>
and subject line ITP: ansi-color -- create ANSI escape codes to color
has caused the Debian Bug report #640187,
regarding ITP: ansi-color -- create ANSI escape codes to color
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
640187: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=640187
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Yogesh S. Bhavsar <yogesh.bhavsar1...@gmail.com>
Package name : color
Version : 0.4
Upstream Author : Moshe Jacobson <mo...@runslinux.net>
URL : http://www.sourcefiles.org/Utilities/Configuration/color-1.1.tar.gz
License : GNU GPL v2
Programming Lang : C
Description : Format Shell Output
Color is a nifty little utility that you can call from shell scripts, that
will let you easily use ANSI escape codes (for colors, bold, underline, etc)
to your shell scripts without having to memorize and type it every time you
want a little formatting to the Output.... Color started out as a quick hack
written in Bash.
To Use it:
To use ANSI color in your shell scripts, place a color command, wrapped in
$() or `` depending on your shell, before the text you want colorized, and
then a $(color off) after the text.
--- End Message ---
--- Begin Message ---
I'm not convinced that this software is worth a package in Debian, because it
is very easy to just code:
| reset='\e[0m'
| red='\e[31m'
| echo -e "${red}abc$reset"
--- End Message ---