Installation
Global Installation
Install ccccctl globally to use it from anywhere:
bash
npm install -g ccccctlAfter global installation, you can use the ccccctl command directly:
bash
ccccctl --version
ccccctl listUsing npx (No Installation Required)
You can use ccccctl without installing it by using npx:
bash
# List commands
npx ccccctl list
# Add a command
npx ccccctl add history
# Show version
npx ccccctl --versionRequirements
- Node.js: Version 18.0.0 or higher
- npm: Comes with Node.js
Verification
Verify your installation by checking the version:
bash
ccccctl --version
# or
npx ccccctl --versionYou should see the current version number displayed.
Updating
To update to the latest version:
bash
npm update -g ccccctlUninstalling
To remove ccccctl:
bash
npm uninstall -g ccccctl