
: Re: Finding the home screen's most recent books on Linux Sony PRS-650 shows the three most recent books on its home screen. How can I modify this top three and how can I list the current ones
0 Reactions
Use the following shell command for listing the last three files:
find database/media/books -type f -exec stat --format '%Y :%y %n' {} ;
| sort -nr | cut -d: -f2- | head -3
For putting a book at the top of the list use touch:
touch database/media/books/mybook.epub
Free books android app tbrJar TBR JAR Read Free books online gutenberg
More posts by @Sarah

: How to set metadata (title, author) of exported PDF documents in LibreOffice/OpenOffice.org I often create 'read only once and delete' PDF files with LibreOffice. How can I set their metadata
0 Reactions

: EPub Reader for Windows is a Windows utility that allows viewing ePub files or converting ePub documents to pdf files.
0 Reactions