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 | |
# Filename: check-updates-docker.sh | |
# | |
# Author: Eliastik ( eliastiksofts.com/contact ) | |
# Version 1.3.1 (17 nov 2024) - Eliastik | |
# | |
# Description: This script checks for updates of the images for current installed Docker containers. | |
# This script doesn't need root access as long as you are running the Docker daemon in rootless mode | |
# or you followed the "Manage Docker as a non-root user" in the Docker documentation: https://docs.docker.com/engine/install/linux-postinstall/ |
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 | |
# Filename: update-icon-snap.sh | |
# | |
# Author: Eliastik ( eliastiksofts.com/contact ) | |
# Version 1.1 (22 may 2022) - Eliastik | |
# | |
# Changelog: | |
# | |
# Version 1.1 (22 may 2022): |
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 | |
# Filename: update-hosts.sh | |
# | |
# Author: George Lesica <[email protected]> | |
# Enhanced by Eliastik ( eliastiksofts.com/contact ) | |
# Version 1.3 (22 april 2021) - Eliastik | |
# | |
# Description: Replaces the HOSTS file with hosts lists from Internet, | |
# creating a backup of the old file. Can be used as an update script. |