Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
my $file = 'notes.txt';
|
||||
if ( @ARGV ) {
|
||||
open NOTES, '>>', $file or die "Can't append to file $file: $!";
|
||||
print NOTES scalar localtime, "\n\t@ARGV\n";
|
||||
} else {
|
||||
open NOTES, '<', $file or die "Can't read file $file: $!";
|
||||
print <NOTES>;
|
||||
}
|
||||
close NOTES;
|
||||
Loading…
Add table
Add a link
Reference in a new issue