Skip to content

Instantly share code, notes, and snippets.

View pierres's full-sized avatar
🏠
Working from home

Pierre Schmitz pierres

🏠
Working from home
View GitHub Profile
#!/usr/bin/env bash
(
for lib in $(pacman -Qql openssl | grep -o '[^/]*.so$'); do
for repo in core extra community testing community-testing multilib multilib-testing staging community-staging multilib-staging gnome-Unstable kde-unstable; do
sogrep $repo $lib
done
done
) | sort -u