I will be using this thread to post Tips Tricks on using ShelveLogger.
Note: The posts here will be interesting and advanced tweaks not
needed in normal usage.
So if you are new ... just down load the latest ShelveLogger.html and
click on it.
Cheers.
--
You received this message because you are subscribed to the Google
Groups "Shelve Firefox Add-on" group.
To post to this group, send email to shelve-fir...@googlegroups.com.
To unsubscribe from this group, send email to
shelve-firefox-a...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/shelve-firefox-addon?hl=en.
Script in Linux to backup ShelveLogger.html and remove non-printable
characters.
Create in :/home/[user]/data/Shelve.
Name :rem-non-printable.sh
---
#!/bin/sh
FPATH=/home/sil/data/Shelve/
INPUT_FILE=ShelveLogger.html
date=`date "+%Y-%m-%d_%H-%M-%S"`
OUTPUT_FILE=ShelveSlog1.html
cp $FPATH$INPUT_FILE $FPATH$date-$INPUT_FILE
tr -cd '\11\12\40-\176' < $FPATH$INPUT_FILE > $FPATH$OUTPUT_FILE
mv $FPATH$OUTPUT_FILE $FPATH$INPUT_FILE
---