From 913c6037af2c4a7fb03e6c73f233f96149a735cd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 30 Jul 2012 01:53:56 +0200 Subject: Adding shortcut helper for dctrl-tools. This 'Packages' shortcut helper can be used for simplified usage of grep-aptavailable from dctrl-tools. Rather than needing to specify the following explicit command: ! grep-aptavail -n -sPackage -FPriority standard in package lists, the following shortcut can be used: ! Packages Priority standard --- share/bin/Packages | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 share/bin/Packages (limited to 'share') diff --git a/share/bin/Packages b/share/bin/Packages new file mode 100755 index 000000000..06ce05ed3 --- /dev/null +++ b/share/bin/Packages @@ -0,0 +1,30 @@ +#!/bin/sh + +## live-build(7) - System Build Scripts +## Copyright (C) 2006-2012 Daniel Baumann +## +## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +## This is free software, and you are welcome to redistribute it +## under certain conditions; see COPYING for details. + + +set -e + +if [ ! -e /usr/bin/grep-aptavail ] +then + echo "E: /usr/bin/grep-aptavail: No such file." + + exit 1 +fi + +if [ -z "${@}" ] +then + echo "Usage: $(basename ${0}) FIELD VALUE" + + exit 1 +fi + +_FIELD="${1}" +_VALUE="${2}" + +grep-aptavail -n -sPackage -F${_FIELD} ${_VALUE} | sort -- cgit v1.2.3