diff options
| author | Christian Cleberg <[email protected]> | 2024-02-15 09:57:08 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2024-02-15 09:57:08 -0600 |
| commit | f07bf76fe4f7c8794e0d4b48a395fd8be96937fa (patch) | |
| tree | 0dc324bd8c4496bc81ded00455fbc48d97f15fc3 /content/blog | |
| parent | 70860890c5b12eb1a550ca78c82802cfc33d9d97 (diff) | |
| download | cleberg.net-f07bf76fe4f7c8794e0d4b48a395fd8be96937fa.tar.gz cleberg.net-f07bf76fe4f7c8794e0d4b48a395fd8be96937fa.tar.bz2 cleberg.net-f07bf76fe4f7c8794e0d4b48a395fd8be96937fa.zip | |
fix error in code block
Diffstat (limited to 'content/blog')
| -rw-r--r-- | content/blog/2021-03-19-clone-github-repos.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/blog/2021-03-19-clone-github-repos.md b/content/blog/2021-03-19-clone-github-repos.md index 8ea5f05..2aed609 100644 --- a/content/blog/2021-03-19-clone-github-repos.md +++ b/content/blog/2021-03-19-clone-github-repos.md @@ -28,7 +28,7 @@ type an organization's name instead of a user's name. CNTX=users; NAME=YOUR-USERNAME; PAGE=1 curl "https://api.github.com/$CNTX/$NAME/repos?page=$PAGE&per_page=100" | grep -e 'git_url*' | - cut -d " -f 4 | + cut -d \" -f 4 | xargs -L1 git clone ``` |
