My .bash_profile is blocked. How to edit it?

I am a little new to this area on my Mac. Yesterday I made my .bash_profile without any problems. Now, when I open it, textedit says that it is locked and does not allow me to unlock it. I tried using chmod 644 to change permissions, but that didn't help.

What am I missing here?

+5
source share
2 answers

Give yourself write permissions for this file:

/usr/bin/sudo /bin/chmod u+rwx /Users/yourusername/.bash_profile
/usr/bin/sudo /usr/sbin/chown yourusername /Users/yourusername/.bash_profile
+9
source

Kipress Frankenfeld answered him in

Unable to edit bash_profile on Mac OsX [closed]

sudo chown your_user_name ~ / .bash_profile

+2
source

All Articles