Seth
Seth

Reputation: 111

Windows command line alternative for "export"

I've bought a book about Machine Learning, and it needs an environment setup. The code in the book is

$ export ML_PATH="$HOME/ml"
$ mkdir -p $ML_PATH

but as far as I know, this are Linux/UNIX commands, so there are alternatives for Windows?

Upvotes: 9

Views: 27579

Answers (2)

basheer alwaely
basheer alwaely

Reputation: 31

SET ML_PATH="$HOME/ml"
SET mkdir $ML_PATH`

Upvotes: 3

andydavies
andydavies

Reputation: 3303

set

(Answers must be 30 chars minimum. Oh yes they must.)

Upvotes: 51

Related Questions