Hi monks, i made this script to generate colors on the console but im using a old shell scripting way, i want to know about a function or module, or another way to generate colors, check the script and let me know what you think..
#!/usr/bin/perl -wl
for (30..37){
print "^[[033;0;${_}m $_";
}