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.
重複の可能性: Bash のバックティックに相当するバッチ
UNIX では、コマンド出力の置換に `` を使用します。
例えば
export a=`pwd`
DOS コマンド プロンプトでこの (``) に相当するものはありますか?
ユニックス:
export var1=`pwd`
DOS:
FOR /F %a IN ('pwd') DO SET var1=%a