mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2026-02-08 03:27:59 +01:00
Why to have three different package managers with four different commands to do a thing I am doing often, if I can script one command to do it?
8 lines
101 B
Bash
Executable File
8 lines
101 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
apt-get -y update
|
|
apt-get "$@" upgrade
|
|
flatpak update
|
|
snap refresh
|
|
set +x
|