cmc/cleberg.net

My personal web garden & blog.

clone: git clone https://gitbay.org/cmc/cleberg.net.git

f07bf76fe4f7c8794e0d4b48a395fd8be96937fa

unsigned

author: Christian Cleberg <hello@cleberg.net> · 2024-02-15T15:57:08Z

fix error in code block
 content/blog/2021-03-19-clone-github-repos.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 ```