mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
13 lines
230 B
Bash
13 lines
230 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
ALL=$(pacman --query --quiet --explicit)
|
||
|
BASE=$(pacman --query --quiet --groups base)
|
||
|
BASE_DEVEL=$(pacman --query --quiet --groups base-devel)
|
||
|
|
||
|
echo "$ALL
|
||
|
$BASE
|
||
|
$BASE
|
||
|
$BASE_DEVEL
|
||
|
$BASE_DEVEL" | sort | uniq -u
|