|  03-05-2025, 01:27 AM | #1 | 
| 0000000000101010            Posts: 5,906 Karma: 12983233 Join Date: Mar 2023 Location: An island off the coast of Ireland Device: PB632 [HD3] | 
				
				Koreader download and install script
			 
			
			Basic script to download and install the latest version of Koreader directly from Pocketbook devices. I may expand on the functionality if there's interest; perhaps adding uninstall and settings backup options. Code: #!/bin/sh tmpDir=/var/tmp/koreader rm -rf $tmpDir; mkdir $tmpDir; cd $tmpDir curl -s https://api.github.com/repos/koreader/koreader/releases/latest \ | grep -wo "https.*pocketbook.*zip" | wget -qi - unzip $tmpDir/$(ls) -d /mnt/ext1 Last edited by neil_swann80; 03-10-2025 at 07:15 AM. | 
|   |   | 
|  | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| how to execute a bash script in koreader | madtsu | KOReader | 3 | 08-06-2024 06:52 AM | 
| Linux installation script don't install dependencies (on Debian) | Chocaute | Server | 2 | 04-23-2023 10:02 AM | 
| Install script fails on Ubuntu 18.04 | fishcasa | Calibre | 9 | 05-01-2018 12:11 AM | 
| Calibre Install/Update Script for OS X | faraz | Calibre | 2 | 11-11-2012 12:16 PM | 
| install script | iomari | Calibre | 4 | 09-25-2011 07:58 AM |