Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to clone all git repositories

GHUSER=CHANGEME; curl "https://api.github.com/users/$GHUSER/repos?per_page=1000" | grep -o 'git@[^"]*' | xargs -L1 git clone
Comment

git clone all repositories in organization

CNTX={users|orgs}; NAME={username|orgname}; PAGE=1
curl "https://api.github.com/$CNTX/$NAME/repos?page=$PAGE&per_page=100" |
  grep -e 'clone_url*' |
  cut -d " -f 4 |
  xargs -L1 git clone
Comment

PREVIOUS NEXT
Code Example
Shell :: powershell add to path 
Shell :: gitconfig includeif example 
Shell :: git init git remote add origin git pull 
Shell :: close sessin git cli 
Shell :: how to grep to a specidif line 
Shell :: lamp download for ubuntu 20.04 
Shell :: dockerfile cmd command 
Shell :: command not available after yarn add global linux 
Shell :: tor mac not connected 
Shell :: shell align columns 
Shell :: auto finish zsh 
Shell :: resize all images in folder linux 
Shell :: cmd command pipe file to clipboard 
Shell :: xrandr 1600x900 
Shell :: terminal osx compare folders and files mojave 
Shell :: ubuntu increase volume 
Shell :: why my github user not showing photo in commit 
Shell :: zsh open current directory in explorer 
Shell :: guest additions not working on ubutnu 2104 
Shell :: jenkins get last commit message 
Shell :: virtualbox extension pack linux 
Shell :: regex to accept at most two digit :js 
Shell :: llaravel sanctum 
Shell :: permission terminal ubuntu 
Shell :: add ssh public key to server 
Shell :: kill process on mac 
Shell :: print statement in bashrc 
Shell :: where is upower linux 
Shell :: find hidden directories and files from a website wfuzz 
Shell :: npm audit undu 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =