This commit is contained in:
Johann Dreo 2014-12-19 11:14:18 +01:00
commit 7bf87889ee
3 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ colout(1) -- Color Up Arbitrary Command Output
## DESCRIPTION ## DESCRIPTION
`colout` read lines of text stream on the standard input and output characters `colout` read lines of text stream on the standard input and output characters
matching a given regular expression *PATTERN* in given <COLOR> and *STYLE*. matching a given regular expression *PATTERN* in given *COLOR* and *STYLE*.
If groups are specified in the regular expression pattern, only them are taken If groups are specified in the regular expression pattern, only them are taken
into account, else the whole matching pattern is colored. into account, else the whole matching pattern is colored.

View file

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
#encoding: utf-8 #encoding: utf-8
# Color Up Arbitrary Command Ouput # Color Up Arbitrary Command Output
# Licensed under the GPL version 3 # Licensed under the GPL version 3
# 2012 (c) nojhan <nojhan@nojhan.net> # 2012 (c) nojhan <nojhan@nojhan.net>

View file

@ -21,7 +21,7 @@ requires = ['argparse', 'pygments', 'babel']
setup( setup(
name='colout', name='colout',
version='0.1', version='0.1',
description='Color Up Arbitrary Command Ouput.', description='Color Up Arbitrary Command Output.',
long_description=open('README.md').read(), long_description=open('README.md').read(),
author='nojhan', author='nojhan',
author_email='nojhan@nojhan.net', author_email='nojhan@nojhan.net',