On 17Oct2021 15:04, Oskari Pirhonen <xxc3ncore...@gmail.com> wrote: >#! /bin/bash
I much prefer: #!/bin/sh absent some special reason. /bin/sh exists on all POSIX systems, and bash need not (and if it does, it is not always in /bin). >eval $(which mutt) "$@" && clear Others have wondered about the "which". I wonder about the "eval", which is just asking for attack (or unhappy accidents). Please try not to use it. Cheers, Cameron Simpson <c...@cskk.id.au>