|
From: Renato S. <br....@gm...> - 2015-03-29 22:26:28
|
For getting an answer from mingw-get:
packages=$(mingw-get list | grep Package: | sed -E 's/Package: (\S+).*/\1/')
for package in $packages; do
installed=$(minget $package 1 show | grep installed:)
if [[ -n "$installed" ]]; then
echo "$package"
echo "$installed"
fidone
2015-03-27 11:17 GMT-03:00 Paul Moore <p.f...@gm...>:
> On 27 March 2015 at 14:06, Earnie <ea...@us...> wrote:
> > The data you seek is stored under the D:/path/to/mingw/var directory. I
> > don't remember which file(s) to look at off the top of my head and the
> > computer I'm responding from doesn't contain an installation.
>
> Many thanks. I'd just half an hour or so ago found the
> var\lib\mingw-get\data\sysroot* files, and started looking at them -
> it appears they are the ones I want.
>
> Regards,
> Paul
>
>
> ------------------------------------------------------------------------------
> Dive into the World of Parallel Programming The Go Parallel Website,
> sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for
> all
> things parallel software development, from weekly thought leadership blogs
> to
> news, videos, case studies, tutorials and more. Take a look and join the
> conversation now. http://goparallel.sourceforge.net/
> _______________________________________________
> MinGW-users mailing list
> Min...@li...
>
> This list observes the Etiquette found at
> http://www.mingw.org/Mailing_Lists.
> We ask that you be polite and do the same. Disregard for the list
> etiquette may cause your account to be moderated.
>
> _______________________________________________
> You may change your MinGW Account Options or unsubscribe at:
> https://lists.sourceforge.net/lists/listinfo/mingw-users
> Also: mailto:min...@li...?subject=unsubscribe
>
|