Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm kinda preferring bash lately to fishfish, and I'm wondering if I can change it back. I tried this command: chsh -s /bin/bash but closing the terminal and reopening it does not restore it to bash, but it's still fish.

In fact, how do I remove fish?

share|improve this question
Hmm, that should work. What does grep $USER /etc/passwd | sed 's/.*://' print? – Keith Thompson Nov 14 '12 at 19:59
Did you 'sudo' that command? Eg, sudo chsh -s /bin/bash – leanne Nov 14 '12 at 20:06
Or, you can use System Preferences Accounts with a control-click on user. Check this SuperUser link: superuser.com/questions/379725/… – leanne Nov 14 '12 at 20:09
User accounts aren't kept in /etc/passwd on OS X so grepping won't reveal anything. – Ned Deily Nov 14 '12 at 21:31

1 Answer

up vote 3 down vote accepted

Go to System Preferences, Users & Groups, click the lock to make changes, right click (or Control click) and choose "Advanced Options" and you should have a field to change your shell. Change it there, reboot, and your new shell should take effect.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.