I always need to go at workspace directory using cd, I got bored with this. I want that terminal should be opened at my workspace directory on start, is there any way to do this? Please suggest.
Asked
Active
Viewed 244 times
2 Answers
1
You can edit your ~/.bashrc and append the cd command you want to the end of this file.
cd /desired_directory/
Now when you open the terminal, the current working directory will be this.
Byte Commander
- 110,243
migrc
- 416
0
Full answer can be found here
Briefly, what you need is to install nautilus
sudo apt-get install nautilus-open-terminal
After it, you can right click in any directory and there will be an option called "Open in terminal"
Sergey Maslov
- 133