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.
${1}スクリプト(ファイルパス)に渡された引数を${1}同じシェルスクリプト内の文字列変数に保存し、次にechoパスecho variableではなくを使用して保存したいと思いますecho ${1}。
${1}
echo
echo variable
echo ${1}
単にこれを試してみてください:
myvar="$1" echo "$myvar"
引数を変数'var'に保存する::
local var="${1}"
変数をエコーします::
echo "${var}"