Command line tool for interfacing with various mds services and utilities
https://github.com/orgs/MadDonkeySoftware/projects/1
To set up the CLI for local development:
npm run prepublish:setup-- rebuilds the CLI filescd dist-- Switch to the JS files of the CLInpm link-- sets up your terminal environment to be able to runmds
To remove the locally linked CLI:
npm unlink mds-cloud-cli-- removes the link from your system
(You should add these instructions to your project's README)
In zsh, you can write these:
echo '. <(./githubber --completion)' >> .zshrcIn bash, you should write:
./githubber --completion >> ~/githubber.completion.sh
echo 'source ~/githubber.completion.sh' >> .bash_profileIn fish, you can write:
echo 'githubber --completion-fish | source' >> ~/.config/fish/config.fishThat's all!
Now you have an autocompletion system for your CLI tool.