Deutsch Diese Seite auf deutsch

How to import notes from JPilot (Linux)

1. Export the memos into a comma separated file (csv)

In JPilot select your notes, then go to File Menu -> Export and select CVS button in
dialog and then save file as a cvs file (example – palmnotes.cvs).

2. Convert the file to the correct format

Run the following command on the file:

sed -i -e "1d" -e 's@,"0"@@' palmnotes.csv

So you get the correct csv-file-format:

“foldername”,“note content”
“foldername”,“note content”

Then follow from the step 4 of the common instructions.