This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Get a list of all volumes | |
| volumes=$(podman volume ls -q) | |
| #get timestamp for unique filename | |
| timestamp=$(date +"%Y%m%d%H%M%S") | |
| # Pause all running containers | |
| echo "Pausing containers for backup" | |
| podman pause $(podman ps -q) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Put your username and password in this file: | |
| . ~/.jncep/credentials | |
| # in the following format: (without the # in front) | |
| # EMAIL=you@example.tld | |
| # PASSWORD='password' | |
| # This will download everything that exists in the series you point it at, assuming | |
| # they haven't expired, consolidating parts by volume into single epubs if |
NewerOlder