There's no "problem" I just don't know how to do it. Here's the code I used to make the note files so far for reference.
#! Perl
use strict;
my $notefile = 'notes'; #Define file for notes here
sub new_notes {
my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(
+time);
print 'Type {e} on a blank line to end the note'."\n";
my $string = sprintf "%02d/%02d/%4d %02d:%02d\n", $mon+1, $mday, $
+year+1900, $hour, $min;
while (<STDIN>) {
last if m!\{e\}!;
$string .= $_;
}
$string .= "-----\n";
open(NOTE, ">>$notefile");
print NOTE $string;
close(NOTE);
return 1;
}
sub get_notes {
}
print "Welcome to MyNotes, a personal note taking system.\n";
print "\tPress 'h' for help\n";
new_notes();
> munchie, the number munchin newb
Llama: The other other white meat!
(you had to be there :-P)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.