Advertisement
Advertisement
| 03.11.2008 at 12:13PM PDT, ID: 23232891 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: |
#!/usr/bin/env perl
# File: ewrite.pl
#
use strict;
my ($ft_v1, $ft_v2, $ft_v3, $ft_v4);
my $title="Title Goes Here";
# ----- REPORT FORMATING -----
format =
@<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @>>>>>>>>>>>>> @>>>>>>>>>>>>>
$ft_v1, $ft_v2, $ft_v3, $ft_v4
.
# ----- PRIVATE SUB-FUNCTION DEFINITION -----
sub init_app
{
print "\n\t\t[ $title ]\n\n";
$ft_v1 = '=' x 20;
$ft_v2 = '=' x 52;
$ft_v3 = '=' x 22;
$ft_v4 = '=' x 22;
write();
$ft_v1 = '=' x 20;
$ft_v2 = '=' x 52;
$ft_v3 = '=' x 22;
$ft_v4 = '=' x 22;
write();
}
# Start application:
init_app();
### We are ready to exit
exit 0;
|