循环的批处理文件转换为shell脚本

时间:2014-08-03 03:01:27

标签: shell batch-file converter

任何人都可以帮助将此批处理文件代码转换为Unix Shellscript。

setlocal    enabledelayedexpansion

set myfiles=
for %%f in (testfiles\\*.pcap) do set myfiles=!myfiles! %%f
mergecap -w testfiles\\tcpdump.pcap %myfiles%

由于

1 个答案:

答案 0 :(得分:1)

如果我理解你正在尝试做什么,你可以写:

mergecap -w testfiles/tcpdump.pcap testfiles/*.pcap