4dummies
4dummies

Reputation: 819

What exactly is 'workon' in virtualenvwrapper?

I'm just starting with virtualenvwrapper, and got to exploring. I hit a mystery that's bugging me.

There's this command 'workon' that works just as described, but I cannot figure out what it is:

'which workon' gives no output, so it appears not to be a script or executable.

'alias workon' cannot find it.

it does not appear to be a shell function.

There does not appear to be a file of that name anywhere.

So what is it exactly?

Upvotes: 1

Views: 231

Answers (1)

phd
phd

Reputation: 94473

$ type -a workon 

workon is a function

Upvotes: 3

Related Questions