Hello all, can somebody tell me if there is a way to enable in a NetBSD installation image, readline support and tab completion?
Since i find that doing things in the command line outside sysinst is a real pain. Does somebody have any hints on this in order to have a better user experience?
Thanks
Use ksh.
ksh
If you use sh, you can add the following to your shrc:
case "$-" in *i*) set -o emacs set -o tabcomplete ;; esac
In 2021, it would be great if they were active by default, but this workaround is quite acceptable.
Thanks a lot Sir!