From bc6dcb5ec37e9680a29794759fe2ea9ade83eafc Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 26 Aug 2021 21:07:59 +0200 Subject: initial commit --- simply-report-installed-packages | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 simply-report-installed-packages diff --git a/simply-report-installed-packages b/simply-report-installed-packages new file mode 100755 index 0000000..7bccf66 --- /dev/null +++ b/simply-report-installed-packages @@ -0,0 +1,15 @@ +#!/bin/bash + +if ! command -v pacman 2>/dev/null; then + exit 1 +fi + +{ + uname -n + pacman-conf Architecture + pacman -Slq archlinuxewe \ + | grep -xFf <( + pacman -Qq + ) +} \ +| curl -T - https://arch.eckner.net/report.php -- cgit v1.2.3-54-g00ecf