Other Pineapple Smurf
Honorary Master
- Joined
- Jun 21, 2008
- Messages
- 14,593
So for the last year I've ignored all my Virgin CC statements as they require me to read them in a viewer designed for Windows. Out of principle I do not use my Windows for my banking.
Then tonight I checked my email and picked up on the latest Ubuntu mailing list that there is a program. Tried it and it works 100%. Now the world is a happy place.
Downloaded
Hit the following link in your browser:
http://www.striata.com/resources/striata-reader/striata-reader-linux-libc6/download.html
Extract:
I then downloaded one of my statements and read it using the following
command:
This outputs it to .html:
/usr/bin/striata-reader-1.0-27-linux -password=xxxxxxx -outdir=
$HOME/Documents ~/Desktop/Statement.emc
I then created the following script:
Note:
* password is your ID number
* if you do not set an output dir it will spew it all to the current one. This can be quiet a few files.
I set this script to be my default one for opening .emc files and works wonders. Can now view them at last

Then tonight I checked my email and picked up on the latest Ubuntu mailing list that there is a program. Tried it and it works 100%. Now the world is a happy place.
Downloaded
Hit the following link in your browser:
http://www.striata.com/resources/striata-reader/striata-reader-linux-libc6/download.html
Extract:
Code:
tar xvzf striata-reader_libc6.tar.gz
sudo mv striata-readerc /usr/bin/striata-reader-1.0-27-linux
sudo chmod a+x /usr/bin/striata-reader-1.0-27-linux
I then downloaded one of my statements and read it using the following
command:
This outputs it to .html:
/usr/bin/striata-reader-1.0-27-linux -password=xxxxxxx -outdir=
$HOME/Documents ~/Desktop/Statement.emc
I then created the following script:
Code:
#!/bin/bash
tmp_dir=`mktemp -d`;
password=xxxx # your id number
/usr/bin/striata-reader-1.0-27-linux -password=$password -outdir=$tmp_dir -openwith=firefox $1
Note:
* password is your ID number
* if you do not set an output dir it will spew it all to the current one. This can be quiet a few files.
I set this script to be my default one for opening .emc files and works wonders. Can now view them at last