NEWBIE QUESTION!!
Hi guys,
I'm trying to open the ~/.bash_profile file I just created with 'subl' command, I created the ~/.bash_profile file using the touch command, as follow:
touch ~/.bash_profile
it did created it.
now I have to open it like this
subl ~/.bash_profile
and I get this following error
not command 'subl' found, did you mean:
command 'subs' from package 'libsubtitles-perl' (universe)
command 'publ' from package 'atfs' (universe)
subl: command not found
can you please advise in what to do? I'm really new on this and I haven't found any helpful answer around.
subl
(the Sublime Text editor) specifically? Did you actually install it? Otherwise, you should be able to open the file with any standard text editor such asgedit
or evennano
instead – steeldriver Jul 14 '15 at 14:23~/.bash_profile
is not a good idea unless you are sure of it.it will now take precedence over~/.profile
for login shells..make sure yousource ~/.profile
from it or make necessary modifications.. – heemayl Jul 14 '15 at 14:25