How to use source command in shell script?

3

2

I would like to use source command in shell script.

What I have done is like this below:

in start.sh

source ~/tensorflow/bin/activate

then in command line run this script.

$sh start.sh

However nothing happens and

$which source

command doesn't show anything.

So, source is not the normal command?

Is this wrong idea? or how can I reduce the type of path?

whitebear

Posted 2017-06-12T19:25:04.733

Reputation: 273

Answers

5

source is a shell built-in command. The which command looks for binaries on the PATH, like in /usr/bin, /bin, /sbin, etc. but you won't find any built-in commands in a separate binary.

Also, having the source command in a shell script does not result in the source propagating up to your current shell when you run it. sh blah.sh where blah.sh has source in it will not actually source the contents of the file into your interactive shell. That's not how sourcing works.

If you want this sourcing of the tensorflow activate script to happen every time you open a new shell, you need to edit ~/.bashrc or ~/.profile(or other files, depending on what your shell is and how it's configured) and put thesource` command directly in there.

P.S. - your question title is very confusing and looks incomplete. Take some time to edit, revise and clean up your post, or you run the risk of someone downvoting it :P I'm tempted to do so myself, but I wrote an answer, so I'm a little bias...

allquixotic

Posted 2017-06-12T19:25:04.733

Reputation: 32 256

I understood. source command is not the binary command. And sorry for bothering you with incomplete title I sent accidentally before editing finished. I updated the title and article. thank you very much for your kindness. – whitebear – 2017-06-14T01:37:10.103

4

Please use the command:

source start.sh

I came across this very problem, when I wanted to avoid writing:

source ~/.bashrc
source activate tensorflow
jupyter notebook

Thereafter, I came across a page which explains this better: What are the differences between executing shell scripts using “source file.sh”, “./file.sh”, “sh file.sh”, “. ./file.sh”? on Ask Ubuntu.

abhishekPakrashi

Posted 2017-06-12T19:25:04.733

Reputation: 41

OMG! so obvious in hindsight, yet I would have never thought to run the script with source, thanks for the insight. – Master James – 2019-05-28T19:17:01.263

0

It appears that you wish to activate a python virtual environment where you installed tensorflow. You can try using an alias in ~/.bashrc.

Add

alias pytensorflow='source ~/tensorflow/bin/activate'

at the end of ~/.bashrc, below the line

# User specific aliases and functions

Start a bash session and you can simply type in pytensorflow at the command prompt to activate the virtual environment. I have successfully used this.

Subimal

Posted 2017-06-12T19:25:04.733

Reputation: 1