Metadata-Version: 2.4
Name: system-helpers
Version: 0.0.3.post2
Summary: Helper scripts for Linux systems.
Author: Arnst Maarten, Tomasetti Romin
License-Expression: MIT
Project-URL: Homepage, https://github.com/uliegecsm/system-helpers
Project-URL: Documentation, https://github.com/uliegecsm/system-helpers
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typeguard
Dynamic: license-file

# System helpers

This repository contains useful standalone helper scripts for `Linux` systems.

## `apt`

Useful for dealing with `apt` related tasks.

For instance, the following command
```bash
apt-helpers install-packages --update --upgrade --clean --packages git wget
```
will perform:
1. `apt update`
2. `apt upgrade`
3. `apt --yes --no-install-recommends install git wget`
4. `apt clean && rm -rf /var/lib/apt/lists`

## `update-alternatives`

Useful for dealing with `update-alternatives` tasks.
