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.
我认为并希望这非常容易,但我太愚蠢/盲目了:
我想使用system并且不仅要打开 windows 的命令行,还要在其中执行一个简单的复制任务:
system
system('cmd' , 'copy Frame_Ind* all.dat')
所以我想......我想将所有以“Frame_Ind”开头的文件一起复制到一个名为“all.dat”的文件中。
你能告诉我如何提示多个命令system吗?
我知道这是一个奇怪的解决方法,但它会对我有很大帮助!谢谢和干杯,艾尔
尝试以下操作:
shell('copy Frame_Ind* all.dat')