Remove another now-unused script
- ID
fb0e9ad- date
2025-04-06 21:48:38+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
1251bf3- message
Remove another now-unused script- changed files
2 files, 1 addition, 30 deletions
Changed files
web/README.md (3077) → web/README.md (2623)
diff --git a/web/README.md b/web/README.md
index 928f977..c6aca71 100644
--- a/web/README.md
+++ b/web/README.md
@@ -30,12 +30,6 @@ scripts = [
"""
},
{
- "usage": "rcurl [URL]",
- "description": """
- call curl with a couple of flags that allow it to do resumable downloads, which is useful for large files.
- """
- },
- {
"name": "scrape_really_useful_boxes.py",
"description": """
scrape the Really Useful Boxes product catalogue, so I can search for boxes in ways their website doesn't allow – in particular, by dimensions, so I can find boxes that fit into specific spaces.<br/><br/><img src="really_useful_boxes.png">
@@ -72,15 +66,6 @@ cog_helpers.create_description_table(folder_name=folder_name, scripts=scripts)
</dd>
<dt>
- <a href="https://github.com/alexwlchan/scripts/blob/main/web/rcurl">
- <code>rcurl [URL]</code>
- </a>
- </dt>
- <dd>
- call curl with a couple of flags that allow it to do resumable downloads, which is useful for large files.
- </dd>
-
- <dt>
<a href="https://github.com/alexwlchan/scripts/blob/main/web/scrape_really_useful_boxes.py">
<code>scrape_really_useful_boxes.py</code>
</a>
@@ -98,4 +83,4 @@ cog_helpers.create_description_table(folder_name=folder_name, scripts=scripts)
this is a wrapper around <a href="https://github.com/yt-dlp/yt-dlp">yt-dlp</a> that does parallel downloads of videos in playlists.
</dd>
</dl>
-<!-- [[[end]]] (checksum: 8ca8e6855833f6e445b7ff4d7e83ec98) -->
+<!-- [[[end]]] (checksum: c9ec85522621534fe70f3b3eded1a06d) -->
web/rcurl (238) → web/rcurl (0)
diff --git a/web/rcurl b/web/rcurl
deleted file mode 100755
index 800970b..0000000
--- a/web/rcurl
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env bash
-# r(esumable) curl.
-#
-# This just calls curl with a couple of flags that allow it to resume
-# an in-progress download.
-
-set -o errexit
-set -o nounset
-
-curl \
- --location \
- --remote-name \
- --continue-at - \
- "$1"