This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reference https://stackoverflow.com/a/34407620/13287790 | |
# Requires `jq` | |
# $ echo -n "encode this" | jq -sRj @uri | |
# encode%20this | |
# MY_VAR=$(urlencode "encode this") | |
echo -n "${1}" | jq -sRj @uri |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
SERVICE_NAME='<Azure Search Service Name>' | |
API_VER='2017-11-11' | |
ADMIN_KEY='<API KEY>' | |
CONTENT_TYPE='application/json' | |
INDEX_NAME='Azure Search Service index name>' | |
URL="https://$SERVICE_NAME.search.windows.net/indexes/$INDEX_NAME/docs?api-version=$API_VER" | |
{ |