aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xuristart4
1 files changed, 2 insertions, 2 deletions
diff --git a/uristart b/uristart
index 51b54da..50ee573 100755
--- a/uristart
+++ b/uristart
@@ -117,7 +117,7 @@ fi
### do the magic
if [ "$check" = "check" ];then
## might put an extra check in here to output to not-terminal if no terminal exists
- printf "%s\n" "$(printf "%s\n" "$uri" | sed 's/'\''/'\''\\'\'''\''/g' | uriprintf "$line")"
+ printf "%s\n" "$(sqesc "$uri" | uriprintf "$line")"
else
- eval "$(printf "%s\n" "$uri" | sed 's/'\''/'\''\\'\'''\''/g' | uriprintf "$line")"
+ eval "$(sqesc "$uri" | uriprintf "$line")"
fi