"Fossies" - the Fresh Open Source Software Archive

Member "dconf-0.5.1/scripts/equery-find" (28 Feb 2006, 148 Bytes) of package /linux/privat/old/dconf-0.5.1.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 #!/bin/bash
    2 for pkg in $(equery list | cut -d' ' -f5 | sort); do
    3     echo "===${pkg%-[0-9]*}==="
    4     equery files --filter=conf ${pkg%-[0-9]*}
    5     echo
    6 done