summaryrefslogtreecommitdiff
path: root/printfurl
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2018-04-12 10:48:08 +0000
committerepochqwert <epoch@hacking.allowed.org>2018-04-12 10:48:08 +0000
commit47eb00790cfe9badb8f08d4f3e7e3241f1f1649f (patch)
tree6acae03eb1026a4d68a7bda84b1e166048eec126 /printfurl
parent6827f6b8c2ee147f59642f3e3ebbc96f6164ecdc (diff)
downloaduritools-47eb00790cfe9badb8f08d4f3e7e3241f1f1649f.tar.gz
uritools-47eb00790cfe9badb8f08d4f3e7e3241f1f1649f.zip
better format string cutting in printfurl and start now single-quote escapes the url before sending it to printf url
Diffstat (limited to 'printfurl')
-rwxr-xr-xprintfurl2
1 files changed, 1 insertions, 1 deletions
diff --git a/printfurl b/printfurl
index 91fd388..c141bc1 100755
--- a/printfurl
+++ b/printfurl
@@ -1,5 +1,5 @@
#!/bin/sh
-cutargs="$(printf "%s\n" "$1" | tr '%' '\n' | tail -n+2 | grep '^[sukdPpqfU]' | sed 's/^\(.\).*/-\1/g')"
+cutargs="$(printf "%s\n" "$1" | sed 's/%[^sukdPpqfU]//g' | tr '%' '\n' | tail -n+2 | sed 's/^\(.\).*/-\1/g' | tr '\n' ' ')"
count="$(echo $cutargs | tr '-' '\n' | grep -c .)"
printfargs="$(printf "%s\n" "$1" | sed 's/%[sukdPpqfU]/%s/g')"
cuturl "$cutargs" | tr '\n' '\0' | xargs -n $count -0 printf "$printfargs"