aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-07 10:16:25 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-07 10:16:25 +1200
commite1371fc0559b51e0f4420f935eebba1929d99757 (patch)
treec8f16ec279be24910d1e279ce88c9520e3c1e501 /bin
parentWAR->KRIEG in kvlt(6) (diff)
downloaddotfiles-e1371fc0559b51e0f4420f935eebba1929d99757.tar.gz
dotfiles-e1371fc0559b51e0f4420f935eebba1929d99757.zip
Make murl(1) into plain POSIX sh script
Diffstat (limited to 'bin')
-rwxr-xr-xbin/murl5
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/murl b/bin/murl
index 7b5dc050..2fe49adf 100755
--- a/bin/murl
+++ b/bin/murl
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/sh
#
# Format markdown and pass it to hurl to extract URLs from it.
@@ -8,9 +8,6 @@
# License: Public domain
#
-# Check we have the programs we need
-hash pandoc hurl || exit
-
# Pipe the output of pandoc(1) on our args ...
pandoc -f markdown -t html -- "${@:-/dev/stdin}" |