Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit 693ae68

Browse files
authored
Merge pull request #7 from UNHCSC/2-docs-update-github-readme-with-details
docs: update readme with download instructions (#2)
2 parents 3ee6d4d + 9ff41a8 commit 693ae68

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
11
# UNH CCDC/NECCDC 2026 Scripts
22

33
This repo contains cybersecurity related scripts for the 2026 NECCDC Regionals.
4+
5+
## Downloading Scripts
6+
7+
### Linux/Unix
8+
9+
The below command will download the latest script release and unzip it in your current directory on unix-like systems:
10+
11+
```shell
12+
curl -s https://api.github.com/repos/UNHCSC/ccdc2026/releases/latest | awk -F \" '/zipball/ {print $(NF - 1)}' | xargs curl -L -o scripts.zip && unzip scripts.zip -d .
13+
```
14+
15+
### Windows
16+
17+
On Windows you can use this command to download the scripts and extract them:
18+
19+
```powershell
20+
powershell -c "Invoke-WebRequest -Uri (Invoke-RestMethod -Uri https://api.github.com/repos/UNHCSC/ccdc2026/releases/latest).zipball_url -OutFile scripts.zip; Expand-Archive -Path .\scripts.zip -DestinationPath ."
21+
```

0 commit comments

Comments
 (0)