Hi Tanguy,

On dim., 23 oct. 2022 at 17:48, Tanguy LE CARROUR <tan...@bioneland.org> wrote:

> ```console
> $ guix package -I | awk '{print $1}' | tr '\n' ' ' | xargs guix refresh 2>&1 \
>   | ag -v '(already|failed|no updater|warning|redirection)'
> ```

This pipe is equivalent to,

    guix package --export-manifest > /tmp/my-installed-packages.scm
    guix refresh -m /tmp/my-installed-packages.scm 2>&1 \
     | ag -v '(already|failed|no updater|warning|redirection)'

which is, IMHO, more Guixy. ;-)


Cheers,
simon

Reply via email to