> How can I make BASH the root's default shell? Please, pretty please with sugar on top, don't modify the root's SHELL. Even though nothing *should* break, it could.
Instead, modify /.profile: Shell="/bin/tcsh" Options="-l" if [ -x "$Shell" ] then exec "$Shell" "$Options" fi And read the man page on `tcsh`. It's much more comfortable to work with than `bash`. Much more powerful, too. This message posted from opensolaris.org _______________________________________________ opensolaris-discuss mailing list [email protected]
