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
| #!/usr/bin/python3 | |
| import apt | |
| import apt_pkg | |
| import aptsources.sourceslist | |
| import subprocess | |
| # Returns a tuple containing two lists | |
| # The first list is a list of orphaned packages (packages which have no origin) | |
| # The second list is a list of packages which version is not the official version (this does not |
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 | |
| URL="http://fvonline-db.bplaced.net/fv_download.php?lang=eng" | |
| FILE_ARCHIVE="keydb.cfg" | |
| FILE_TARGET="KEYDB.cfg" | |
| mkdir -p ~/.config/aacs | |
| cd ~/.config/aacs | |
| wget -O "$FILE_ARCHIVE.part" "$URL" |
OlderNewer