dehydrated
dehydrated copied to clipboard
Replace all escaped slashes in json strings
${var/pattern/string}
will only replace the first occurence. We should
use ${var//pattern/string}
to replace all escaped slashes.