index
:
hyp
master
Embed soft hyphens in HTML
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
unhyp
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'unhyp')
-rwxr-xr-x
unhyp
4
1 files changed, 3 insertions, 1 deletions
diff --git a/unhyp b/unhyp
index 656d15f..5f9ae43 100755
--- a/
unhyp
+++ b/
unhyp
@@ -1,3 +1,5 @@
#!/bin/sh
-sed 's/\­\;//g'
+in=${1:-/dev/stdin}
+out=${2:-/dev/stdout}
+< $in sed 's/\­\;//g' > $out