aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorepoch <epoch@enzo.thebackupbox.net>2021-11-14 04:33:36 +0000
committerepoch <epoch@enzo.thebackupbox.net>2021-11-14 04:33:36 +0000
commit518adf35c974a83e1e5ad2e2ddf08c02c9f88360 (patch)
treecf5b3b6d06b948873429ded0cc5435cb308ea8ec
parenteb65aa32f77aab0e788c3700f3a16978836416d8 (diff)
downloaduritools-518adf35c974a83e1e5ad2e2ddf08c02c9f88360.tar.gz
uritools-518adf35c974a83e1e5ad2e2ddf08c02c9f88360.zip
sqesc is now being used in uristart
-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