workbench-script/install-dependencies.sh
2024-12-09 19:19:08 +01:00

19 lines
283 B
Bash
Executable file

#!/bin/sh
# Copyright (c) 2024 Pedro <copyright@cas.cat>
# SPDX-License-Identifier: AGPL-3.0-or-later
set -e
set -u
# DEBUG
set -x
main() {
sudo apt install qrencode smartmontools lshw hwinfo dmidecode inxi
}
main "${@}"
# written in emacs
# -*- mode: shell-script; -*-