行为
DelIpList » 历史记录 » 修订 1
修订 1/2
| 下一页 »
machenhe, 2022-04-28 16:04
delIpList
增加人物帐号到指定文件
标签:命令定义|delIpList
格式命令名 | 参数1 |
delIpList | 文件路径 |
- 参数1: 待清理文件路径
路径需要基于..\\Mir200\\Envir
举例
设定待清理路径为
\\testlist.txt
完整待清理路径
..\\Mir200\\Envir\\testlist.txt
特戒引擎脚本示例:
[@main]
#act
mov s$file \\数据文件\\测试非预制数据文件.txt
#say
<添加ip到指定文件/@添加>\\ \\
<清理ip列表文件/@清理>\\ \\
<检测ip是否在文件中/@检测ip>\\ \\
<检测文件存在/@存在>\\ \\
[@添加]
#if
#act
addIpList <$str(s$file)>
readTxt <$str(s$file)> s0
;print命令在控制台输出文件内容
print 文件内容-> s0
[@清理]
#if
#act
delIPList <$str(s$file)>
readTxt <$str(s$file)> s0
print 文件内容-> s0
[@检测ip]
#if
checkIpList <$str(s$file)>
#act
print ip存在于文件中
#elseAct
print ip不存在于文件中
#if
#act
readTxt <$str(s$file)> s0
print 文件内容-> s0
[@存在]
#if
fileExist <$str(s$file)>
#act
print 文件存在
readTxt <$str(s$file)> s0
print 文件内容-> s0
#elseAct
print 文件不存在