I assume that this question was asked many times but i didn't find suitable solution. Every time when i open my shell i need to execute commands to open my working directory enable virtualenv and open file. For example
cd storage/predictions #open project directory
. env/bin/activate #activate virtual environment
cd forecast #open directory
vim file.py #open a file
am i can to execute above commands in more convinience mode such as nest these several commands in one. For example
cd storage/predictions & . env/bin/activate & cd forecast & vim file.py
Thank in advance
&
with double&&
. – AdminBee Nov 11 '19 at 12:46