On Sat Aug 27, 2022 at 9:56 PM BST, ( wrote: > guix shell -D guix -- sh <<EOF > ./bootstrap && ./configure --localstatedir=/var && make -j$(nproc) > EOF
You could wrap it in a sh function: gsh() { guix shell $@ -- sh } gsh -D guix <<EOF ./bootstrap && ./configure --localstatedir=/var && make -j$(nproc) EOF -- (