diff options
| author | epochqwert <epoch@hacking.allowed.org> | 2018-04-12 10:48:08 +0000 | 
|---|---|---|
| committer | epochqwert <epoch@hacking.allowed.org> | 2018-04-12 10:48:08 +0000 | 
| commit | 47eb00790cfe9badb8f08d4f3e7e3241f1f1649f (patch) | |
| tree | 6acae03eb1026a4d68a7bda84b1e166048eec126 | |
| parent | 6827f6b8c2ee147f59642f3e3ebbc96f6164ecdc (diff) | |
| download | uritools-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
| -rwxr-xr-x | printfurl | 2 | ||||
| -rwxr-xr-x | start | 2 | 
2 files changed, 2 insertions, 2 deletions
| @@ -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" @@ -1,4 +1,4 @@  #!/bin/sh  scheme="$(printf "%s\n" "$1" | cuturl -s)"  line="$(grep "^${scheme}:" ~/.config/start.conf | cut -d: -f2-)" -eval "$(printf "%s\n" "$1" | printfurl "$line" )" +eval "$(printf "%s\n" "$1" | sed 's/'\''/'\''\\'\'''\''/g' | printfurl "$line")" | 
