mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
10 lines
173 B
Plaintext
10 lines
173 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
ALL=`pacman -Qqe`
|
||
|
BASE=`pacman -Qqeg base`
|
||
|
BASE_DEVEL=`pacman -Qqeg base-devel`
|
||
|
|
||
|
printf "$ALL\n$BASE\n$BASE\n$BASE_DEVEL\n$BASE_DEVEL" | sort | uniq -u
|