标签: windows batch-file
这是mlexe.bat:
ML /Zi /c /Fl /coff %1.asm LINK /subsystem:console %1.obj
可以这样使用:
mlexe hello
但我希望它以这种方式工作:
mlexe hello.asm
如何修改?
答案 0 :(得分:2)
请参阅using batch parameters,您需要%~n1。
%~n1