Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
more_to_install.sh: script to get not-installed-yet packages
Browse files Browse the repository at this point in the history
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
  • Loading branch information
Sergei Trofimovich committed Jun 26, 2012
1 parent f2816b7 commit 5fa2564
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions more_to_install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

# script to get list of not-installed-yet packages
# from specified overlay

overlay_name=${1-gentoo-haskell}
{
# get all packages
eix --only-names --in-overlay ${overlay_name}
# get installed packages
eix --only-names --installed --in-overlay ${overlay_name}

# print only unique (aka not installed)
} | sort | uniq -u

0 comments on commit 5fa2564

Please sign in to comment.