aboutsummaryrefslogtreecommitdiff
path: root/bin/hurl
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-09-09 23:20:49 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-09-09 23:20:49 +1200
commit7b046454bcd670d03a2a61675a851b9ff1762398 (patch)
tree5a31518bead22fbd5e0ff6d6ebd925296720fc7b /bin/hurl
parentAdd slow(1df) and supp(1df) (diff)
downloaddotfiles-7b046454bcd670d03a2a61675a851b9ff1762398.tar.gz
dotfiles-7b046454bcd670d03a2a61675a851b9ff1762398.zip
Remove unneeded shellcheck skips
Latest version (0.4.4) doesn't raise errors on these lines anymore
Diffstat (limited to 'bin/hurl')
-rwxr-xr-xbin/hurl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hurl b/bin/hurl
index dcc0fd73..16ea48f8 100755
--- a/bin/hurl
+++ b/bin/hurl
@@ -2,7 +2,7 @@
# Extract <a href="..."> URLs from an HTML document or documents
# Input is either stdin or the given arguments concatenated
-cat -- "${@:-/dev/stdin}" | # shellcheck disable=SC2002
+cat -- "${@:--}" |
# Pipe through pup to get all the href links
pup -p 'a attr{href}' |