Commit 2f967a05 authored by Michael Shigorin's avatar Michael Shigorin

initial tagged lists draft

- bin/tags2lists - pkg/lists/tagged/
parent d91a3564
#!/bin/sh -f
# a script to transform a tag name, a list of tag names (ANDed then),
# or a complex boolean expression into a list of package list names
#
# examples of expected stdin:
#
# kde
# live gnome
# (base && (kernel || apt || alterator))
#
find . $(sed \
-e "s,\([^&|! ()']\+\),-name *_\1_*,g" \
-e "s, *&& *, -a ,g" \
-e "s, *|| *, -o ,g" \
-e "s, *! *, ! ,g" \
-e "s, *( *, ( ,g" \
-e "s, *) *, ) ,g" \
) | sed 's,^\./,,'
alterator-lilo
alterator-root
alterator-users
alterator-net-eth
interactivesystem
apt-conf-sisyphus
apt
basesystem
kernel-image-std-def
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment