mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
Change script names & remove extensions
This commit is contained in:
parent
25e9e4a740
commit
9120ae6d07
9
scripts/listpackages
Executable file
9
scripts/listpackages
Executable file
@ -0,0 +1,9 @@
|
||||
#!/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
|
@ -1,13 +0,0 @@
|
||||
#!/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
|
Loading…
Reference in New Issue
Block a user