beautify perl headers
This commit is contained in:
parent
319a8bd1c0
commit
80dcedc5dc
4 changed files with 83 additions and 14 deletions
|
@ -1,10 +1,26 @@
|
|||
#!/usr/bin/perl
|
||||
# CSV zu CSV für ikiwiki
|
||||
# Version 1
|
||||
|
||||
#!/usr/bin/env perl
|
||||
#===============================================================================
|
||||
#
|
||||
# FILE: csv2ikiwiki.pl
|
||||
#
|
||||
# USAGE: ./csv2ikiwiki.pl
|
||||
#
|
||||
# DESCRIPTION:
|
||||
#
|
||||
# OPTIONS: ---
|
||||
# REQUIREMENTS: ---
|
||||
# BUGS: ---
|
||||
# NOTES: ---
|
||||
# AUTHOR: Ralph J.Mayer (rm),
|
||||
# ORGANIZATION:
|
||||
# VERSION: 1.0
|
||||
# CREATED: 05.09.2014 22:19:18
|
||||
# REVISION: ---
|
||||
#===============================================================================
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use utf8;
|
||||
|
||||
my $file = $ARGV[0] or die "Need to get CSV file on the command line\n";
|
||||
|
||||
|
|
|
@ -1,9 +1,27 @@
|
|||
#!/usr/bin/perl
|
||||
# CSV zu Remind mit HTML für Webseite
|
||||
# Version 1
|
||||
#!/usr/bin/env perl
|
||||
#===============================================================================
|
||||
#
|
||||
# FILE: csv2rem-html.pl
|
||||
#
|
||||
# USAGE: ./csv2rem-html.pl
|
||||
#
|
||||
# DESCRIPTION:
|
||||
#
|
||||
# OPTIONS: ---
|
||||
# REQUIREMENTS: ---
|
||||
# BUGS: ---
|
||||
# NOTES: ---
|
||||
# AUTHOR: Ralph J.Mayer (rm),
|
||||
# ORGANIZATION:
|
||||
# VERSION: 1.0
|
||||
# CREATED: 05.09.2014 22:20:20
|
||||
# REVISION: ---
|
||||
#===============================================================================
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use utf8;
|
||||
|
||||
use DateTime;
|
||||
|
||||
my $file = $ARGV[0] or die "Need to get CSV file on the command line\n";
|
||||
|
|
|
@ -1,9 +1,27 @@
|
|||
#!/usr/bin/perl
|
||||
# CSV zu Remind
|
||||
# Version 1
|
||||
#!/usr/bin/env perl
|
||||
#===============================================================================
|
||||
#
|
||||
# FILE: csv2rem-ics.pl
|
||||
#
|
||||
# USAGE: ./csv2rem-ics.pl
|
||||
#
|
||||
# DESCRIPTION:
|
||||
#
|
||||
# OPTIONS: ---
|
||||
# REQUIREMENTS: ---
|
||||
# BUGS: ---
|
||||
# NOTES: ---
|
||||
# AUTHOR: Ralph J.Mayer (rm),
|
||||
# ORGANIZATION:
|
||||
# VERSION: 1.0
|
||||
# CREATED: 05.09.2014 22:20:45
|
||||
# REVISION: ---
|
||||
#===============================================================================
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use utf8;
|
||||
|
||||
use DateTime;
|
||||
|
||||
my $file = $ARGV[0] or die "Need to get CSV file on the command line\n";
|
||||
|
|
|
@ -1,10 +1,27 @@
|
|||
#!/usr/bin/perl
|
||||
# CSV zu CSV für ikiwiki
|
||||
# Version 1
|
||||
|
||||
#!/usr/bin/env perl
|
||||
#===============================================================================
|
||||
#
|
||||
# FILE: csv2rem.pl
|
||||
#
|
||||
# USAGE: ./csv2rem.pl
|
||||
#
|
||||
# DESCRIPTION:
|
||||
#
|
||||
# OPTIONS: ---
|
||||
# REQUIREMENTS: ---
|
||||
# BUGS: ---
|
||||
# NOTES: ---
|
||||
# AUTHOR: Ralph J.Mayer (rm),
|
||||
# ORGANIZATION:
|
||||
# VERSION: 1.0
|
||||
# CREATED: 05.09.2014 22:21:15
|
||||
# REVISION: ---
|
||||
#===============================================================================
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use utf8;
|
||||
|
||||
|
||||
my $file = $ARGV[0] or die "Need to get CSV file on the command line\n";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue