5 ms·
You can set your shell per user in /etc/passwd (or similar, can't remember the name)
by frej 11y ago
You can set your shell per user in /etc/passwd (or similar, can't remember the name)
- super_mario 11y agoIt's easy to change your default shell, but if you got a shell script that explicitly specifies #!/bin/sh (and they all do) then /bin/sh will be invoked, regardless what your default shell is. So your options are to modify every script file to invoke your default shell (usually #!/usr/local/bin/sh ) or to install your default shell in /bin.