The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

wachovia_summary.pl - program bundled with Finance::Bank::Wachovia dumps quick summary of all accounts.

SYNOPSIS

Use this program from the command line to get a miniature report on your wachovia savings/checkings account.

You can provide the login info every time you run the command:

  wachovia_summary.pl --can=123456789 --pin=1234 --codeword=foo
  
  OR
  
  wachovia_summary.pl --userid=foo --password=bar
 

NOTE ABOUT LOGINS: you can either use the customer access number method (--can --pin and --codeword) or the user id method ( --userid and --password ) it depends on how you log into the wachovia website.

But that's alot to type in every time you want to check your accounts. It's easier to provide the login info and have the program store it in a file ( "~/.wachovia" by default ). The file is encrypted (thanks Doug) and you use a "key" to decrypt the contents. The first time you run the command, you have to include all the login/account info PLUS a password (key) and optionally a file path to use.

  wachovia_summary.pl --can=123456789 --pin=1234 --codeword=foo --key=password --file=.checking
  

After doing that, you can have the same affect as typing all that in just by typing:

  wachovia_summary.pl --key=password --file=~/.checking
  

And if you choose to use the default "~/.wachovia" file path (best choice for the account you'll check most often) then you can omit the --file argument.

  wachovia_summary.pl --key=password
  

And if you decide that you want to change the account number, or your PIN number needs to be changed, then just supply that changed info plus the key and it will update your key-file:

  wachovia_summary.pl --key=password --pin=4321
  

Now your pin will be updated, all else will remain the untouched. Remember, the only time you need to provide the --file argument is when you do want to use the default "~/.wachovia" file path.

DESCRIPTION

Uses Finance::Bank::Wachovia (which retrieves, parses, and objectifies your account info) and generates a report.

ARGS

--can

Your customer access number.

--pin

Your 4-digit PIN.

--codeword

Your super secret word.

--key

Optional. The password you use if you want to be smart and lazy. Read SYNOPSIS for details.

--keyfile

The file you want to store your login/account info if you are using --key. It's optional, and "~/.wachovia" is the default. Read SYNOPSIS for details.

THANKS

Larry Wall for Perl.

Doug Feuerbach for so many things, but for this instance of thankfulness: the encryption/decryption routines.

AUTHOR

Jim Garvin <jg.perl@thegarvin.com>

Copyright 2004 by Jim Garvin

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Finance::Bank::Wachovia

1 POD Error

The following errors were encountered while parsing the POD:

Around line 136:

=begin without a target?