$ ./myscript my.site.com
How do I replace all dots in the first parameter? Here’s my current try but it’s returning a bad substition error.
#!/bin/bash
dbname=${$1//./_}
echo $dbname
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Remove
$before 1 since$1and${1}are the same.