5i365 (我心飞扬)当前离线
上尉
#@&cls&powershell "gc '%~0'|out-string|iex"&echo 按任意键再次执行&pause>nul&exit {echo "hello"} | iex复制代码
went 当前离线
少校
TOP
#@&cls&powershell "gc '%~0'|out-string|iex"&pause&exit while ($true) { cls cmd /c "echo 按任意键再次执行&pause>nul" {echo "hello"} | iex }复制代码
#@&cls&powershell "gc '%~0'|out-string|iex"&pause&exit while ($true) { start calc cls cmd /c "echo 按任意键再次执行&pause>nul" }复制代码
#@&cls&powershell "while(1){gc '%~0'|out-string|iex;pause}"&pause&exit Write-Host 'hello'复制代码
#@&cls&powershell "while(1){gc '%~0'|out-string|iex;cls;cmd /c 'echo 按任意键再次执行&pause>nul'}"&pause&exit start calc复制代码
@echo off :start start calc echo 按任意键再次执行&pause>nul cls goto :start复制代码
for_flr 当前离线
五级士官
#@&cls&powershell "gc '%~0'|out-string|iex"&exit do{ echo "hello" echo "按任意键再次执行" $a=[console]::readkey() # cls }while($a.key -ne "q")复制代码
评分人数
#@&cls&powershell "gc '%~0'|out-string|iex"&exit do{ start calc echo "按任意键再次执行, 按Q退出!" $a=[console]::readkey() cls }while($a.key -ne "q")复制代码