2
0
mirror of https://github.com/alexanderepstein/Bash-Snippets synced 2018-11-08 02:59:35 +01:00

Fixed bug (#40)

Bug that wouldn't allow for more than one space in qrify
This commit is contained in:
Linyos Torovoltos 2017-07-05 15:48:24 -04:00 committed by Alex Epstein
parent bc83294d14
commit dda79ca840

View File

@ -71,7 +71,7 @@ httpGet()
makeqr()
{
input=$(echo $input | sed s/" "/%20/ )
input=$(echo $input | sed s/" "/%20/g )
httpGet qrenco.de/$input
}