Skip to content

Instantly share code, notes, and snippets.

@trapd00r
Created June 8, 2010 05:41
Show Gist options
  • Save trapd00r/429659 to your computer and use it in GitHub Desktop.
Save trapd00r/429659 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
chomp(my $pwd = `pwd`);
my @chars = split//, $pwd;
my $i = 202;
for my $c(@chars) {
print "\033[38;5;$i"."m".$c;
$i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment