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.
我正在尝试将一个非常简单的(Unix)shell 脚本翻译成一个“批处理文件”。我把大部分都放下了,除了这条线
CURRENTDIR="$PWD"
我怎样才能把它翻译成“batchese”?
谢谢!
最简单的形式:
SET CURRENTDIR="%cd%"