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::HSL(3pm)				User Contributed Perl Documentation				 Graphics::Color::HSL(3pm)

NAME
Graphics::Color::HSL - HSL color space VERSION
version 0.29 SYNOPSIS
use Graphics::Color::HSL; my $color = Graphics::Color::HSL->new({ hue => 120, saturation => .5, lightness => .25, }); DESCRIPTION
Graphics::Color::HSL represents a Color in an RGB color space. HSL stands for Hue Saturation and Lightness. ATTRIBUTES
hue h Set/Get the hue component of this Color. saturation s Set/Get the saturation component of this Color. lightness l Set/Get the lightness component of this Color. alpha Set/Get the alpha 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: HUE,SATURATION,LIGHTNESS,ALPHA as_percent_string Return a percent formatted value for this color. This format is suitable for CSS HSL values. as_array Get the HSL values as an array as_array_with_alpha Get the HSLA 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::HSL(3pm)
All times are GMT -4. The time now is 01:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy