Equivalent command to source setup1.sh on Windows command line

I had been using a school linux computer to do a ATLAS project using root.

Before I opened any root file, I was instructed to perfom the commands

ssh -X -Y username@pc2013.hep.manchester.ac.uk
source setup1.sh

I would like to be able to do this ATLAS project on my own Windows compter.

I had downloaded the setup1.sh file from the school computer onto my own.
What is the equivalent command to

source setup1.sh

in Windows command line?
Thanks!

Hi,

On Windows, the shell scripts are called batch scripts, and you cannot run the same commands than in shell scripts. They have to be converted, which could be quite complex, depending on what is executed in the script…
The equivalent would be:

setup1.bat

And BTW, FYI, the Atlas Software doesn’t run on Windows

Cheers, Bertrand.

Thank you for the reply.

1 Like