You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
3 months ago | |
|---|---|---|
| .. | ||
| README.md | 3 months ago | |
| ccpm.bat | 3 months ago | |
| ccpm.sh | 3 months ago | |
README.md
Quick Install
Unix/Linux/macOS
curl -sSL https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.sh | bash
Or with wget:
wget -qO- https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.sh | bash
Windows (PowerShell)
iwr -useb https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.bat | iex
Or download and execute:
curl -o ccpm.bat https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.bat && ccpm.bat
One-liner alternatives
Unix/Linux/macOS (direct commands)
git clone https://github.com/automazeio/ccpm.git . && rm -rf .git
Windows (cmd)
git clone https://github.com/automazeio/ccpm.git . && rmdir /s /q .git
Windows (PowerShell)
git clone https://github.com/automazeio/ccpm.git .; Remove-Item -Recurse -Force .git