Sponsored Content
Full Discussion: Adding Color to bash
Operating Systems OS X (Apple) Adding Color to bash Post 302403105 by ASGR on Thursday 11th of March 2010 11:56:23 AM
Old 03-11-2010
Hey guys,

This works...

Code:
#!/bin/bash
if [ $clr="r" ]; then 
    echo -e '\E[1;31m'
    fi

Notes:
Removed surrounding spaces around the '=' (doesn't like extra spaces)
Removed extra space after closing square bracket (not major)
Changed escape character at beginning of string to '\E' (can't remember the difference)
Used single quotes for the string (apparently recommended but optional)
Added 'fi' to terminate the 'if' command (compulsory)

A.
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to get rid of all the weird characters and color on bash shell

Does anyone of you know how to turn off color and weird characters on bash shell when using the command "script"? Everytime users on my server used that command to record their script, they either couldn't print it because lp kept giving the "unknown format character" messages or the print paper... (1 Reply)
Discussion started by: Micz
1 Replies

2. Shell Programming and Scripting

bash: color strings in log file

hello im looking for an easy way to color specific strings in text file. simple example: cat file1 acb 1234 qwer 5678 my goal: cat file1 (color the acb red and the 5678 blue) acb 1234 qwer 5678 cheers (2 Replies)
Discussion started by: modcan
2 Replies

3. Shell Programming and Scripting

Bash - changing a color of a substring

Hello! I need to write a bash script for my university classes, and I came up with an idea of a program that would test the speed of typing - there is some random text that you have to rewrite, and the script measures time, number of mistakes etc. The text would be visible on the screen all... (3 Replies)
Discussion started by: xqwzts
3 Replies

4. Shell Programming and Scripting

color in bash

I have some tcsh scripts that produce output in color, but does not work in bash. Any idea on a solution? echo " \033 (6 Replies)
Discussion started by: kristinu
6 Replies

5. UNIX for Dummies Questions & Answers

Adding Color using More

Daily Stupid Question: When I use a cat with a grep I can see "blind SQL injection vulnerablity" highlighted as red and is easily readable cat file |grep -i 'blind\ SQL\ injection\ vulnerability' When I add a more to view the results page at a time, the color is taken away and is... (3 Replies)
Discussion started by: metallica1973
3 Replies

6. Shell Programming and Scripting

Gawk adding color

I want to know if there is any way to highlight search results using GAWK. So for example: gawk '{IGNORECASE=1;} /^<a/&&/\$/' index.html <a class=author href="http://washingtondc.craigslist.org/search/?areaID=10&amp;amp;catAbb=sss&amp;amp;query=ps vita" title="craigslist washington, DC | all for sale... (3 Replies)
Discussion started by: metallica1973
3 Replies
Graphics::Color::CMYK(3pm)				User Contributed Perl Documentation				Graphics::Color::CMYK(3pm)

NAME
Graphics::Color::CMYK - CMYK color model VERSION
version 0.29 SYNOPSIS
use Graphics::Color::CMYK; my $color = Graphics::Color::CMYK->new({ cyan => 120, magenta => .5, yellow => .25, key => .5 }); DESCRIPTION
Graphics::Color::CMYK represents a Color in CMYK color model. Cyan stands for Cyan Magenta Yellow Key (or black). ATTRIBUTES
cyan c Set/Get the cyan component of this Color. magenta m Set/Get the magenta component of this Color. yellow y Set/Get the yellow component of this Color. key k Set/Get the key (black) component of this Color. name Get the name of this color. Only valid if the color was created by name. METHODS
as_string Get a string version of this Color in the form of: CYAN,MAGENTA,YELLOW,KEY as_percent_string Return a percent formatted value for this color. as_array Get the CMYK values as an array equal_to Compares this color to the provided one. Returns 1 if true, else 0; not_equal_to The opposite of "equal_to". AUTHOR
Cory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Cold Hard Code, LLC. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.12.4 2011-08-11 Graphics::Color::CMYK(3pm)
All times are GMT -4. The time now is 04:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy