0

I have been following the official documentation for installing dsbulk loader but in vain. In the documentation, it says download and install but all that is instructed is to download and extract the zip file. However, typing dsbulk in any directory where it is downloaded and extracted does not work as well. I receive an error: zsh: command not found: dsbulk

aviral sanjay
  • 953
  • 2
  • 14
  • 31

1 Answers1

1

To use it that way, just put directory where you extracted it into PATH variable, like this:

export PATH=directory_with_dsbulk/bin:$PATH

or use full path name to run it, like:

directory_with_dsbulk/bin/dsbulk ...options...
Alex Ott
  • 80,552
  • 8
  • 87
  • 132