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.
DCL 中是否有一个命令会在执行下一个命令之前等待指定的时间。我正在制作一个简单的命令文件,它将 ping 用户指定的 IP 地址,等待 5 秒然后重复 ping 过程。
目前,我已设法向用户询问 IP 地址,然后对其进行 ping 操作。
$ INQUIRE PINGTEST "Enter IP Address" $ TCPIP PINGTEST $ <wait command> $ <repeat TCPIP PINGTEST>
根据@Svend 提供的信息,DCL 支持格式为WAIT delta-time的 WAIT 命令
因此,例如,如果我想在执行下一个命令之前等待 5 秒,则代码如下:
$ INQUIRE PINGTEST "Enter IP Address" $ TCPIP PINGTEST $! WAIT time format hour:minute:second.hundredth $ WAIT 00:00:05 $ TCPIP PINGTEST