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.
たとえば、最初の文字がスペースである文字列をエコーしたいのですがline=" a"; echo $line;、結果は最初のスペースなしで表示され"a"ます" a"。
line=" a"; echo $line;
"a"
" a"
変数の名前を二重引用符で囲んで出力するだけです。
$ line=" a" $ echo "$line" a