Skip to content
Snippets Groups Projects
Commit 28bf9341 authored by Zachary Wartell's avatar Zachary Wartell
Browse files

-new files

parent ffc84298
No related branches found
No related tags found
No related merge requests found
Pipeline #
#!/bin/bash
PAT=$1
OUTFILE=$2
touch $OUTFILE
page=1
while [ $# -gt 0 ]
do
echo curl --header "PRIVATE-TOKEN: $PAT" --ssl-revoke-best-effort --request GET "https://cci-git.charlotte.edu/api/v4/projects?per_page=100&page=1" >> $OUTFILE
page=$(( page + 1 ))
done
#!/bin/bash
SUFFIX="`pwd`"
echo $SUFFIX
PATH=$PATH:$SUFFIX
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment