1f7ae535a0
CADUBI is an application written in Perl that allows you to draw text-based images that are viewable on typical unix-based consoles. Usually the applications that emulate these consoles support various text modes, such as background and foreground colors, bold, and inverse. This text art, commonly called "ASCII art," is used in various places such as online BBSes, email and login prompts. Obtained from: OpenBSD
9 lines
423 B
Text
9 lines
423 B
Text
--- cadubi.orig Thu Jan 27 03:54:51 2000
|
|
+++ cadubi Sun Jul 29 01:10:59 2001
|
|
@@ -32,5 +32,5 @@ use FindBin qw($Bin); use lib "$Bin/../l
|
|
my $CADUBI_Arguments = undef;
|
|
$CADUBI_Arguments .= ' --mute' unless $AUDIBLE;
|
|
$CADUBI_Arguments .= ' '.$ADD_OPS if $ADD_OPS;
|
|
-exec ('perl '.$Bin.'/CADUBI.pl'.$CADUBI_Arguments.' '.join(' ',@ARGV));
|
|
+exec ('perl '.$Bin.'/../libexec/CADUBI.pl'.$CADUBI_Arguments.' '.join(' ',@ARGV));
|
|
|