Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$ ./myscript my.site.com
最初のパラメータのすべてのドットを置き換えるにはどうすればよいですか?これが私の現在の試みですが、それは悪い置換エラーを返しています。
#!/bin/bash dbname=${$1//./_} echo $dbname
dbname=${1//./_}
とは同じな$ので、1の前に削除します。$1${1}
$
$1
${1}