I have this line at the end of my bash file:
ab -n 100 -c 10 'https://example.com/?bot_id=$BOT_ID&page_id=$PAGE_ID'
Since I have 2 parameters in my query string, I need to surround the URL with quotes.
The problem is the bash is outputting the variable name ($BOT_ID
) instead of the value of it.
How could I output the value inside the quotes?