aboutsummaryrefslogtreecommitdiff
path: root/bin/hurl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/hurl')
-rwxr-xr-xbin/hurl11
1 files changed, 0 insertions, 11 deletions
diff --git a/bin/hurl b/bin/hurl
deleted file mode 100755
index 16ea48f8..00000000
--- a/bin/hurl
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-# Extract <a href="..."> URLs from an HTML document or documents
-
-# Input is either stdin or the given arguments concatenated
-cat -- "${@:--}" |
-
-# Pipe through pup to get all the href links
-pup -p 'a attr{href}' |
-
-# Sort them uniquely
-sort | uniq