On Sun, Oct 27, 2024 at 22:42:15 -0500, David Wright wrote:
> type
>   set -x
> before you run os-prober and
>   set +x
> afterwards, and track what it does.

os-prober is a script, so that won't work as written.  You'd either
need to modify os-prober (change the second line from "set -e" to
"set -ex" for example) and then run it; or do something like:

    script
    set -x
    source /usr/bin/os-prober
    exit

(That assumes your interactive shell is bash.)

Reply via email to