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.
私のZshのコード
#!/bin/zsh q=$1 open "http://mathworld.wolfram.com/$q.html"
アプリに入力を入れました
triangle
最初の文字は大きな文字でなければならないので、Wolframでエラーが発生します。
変数qの最初の文字の大文字と小文字をどのように変更できますか?
# q=triangle # echo ${(C)q} Triangle
パラメータ展開フラグを参照してください。