aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/blog/2021-03-19-clone-github-repos.md2
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
```