是否可以将多个Autosys作业的状态更改为ON_ICE。 我尝试使用
sendevent -e CHANGE_STATUS -s ON_ICE –j jobname1
sendevent -e CHANGE_STATUS -s ON_ICE –j jobname2
sendevent -e CHANGE_STATUS -s ON_ICE –j jobname3
sendevent -e CHANGE_STATUS -s ON_ICE –j jobname4
但收到以下错误
“如果没有有效的JIL子命令,则无法接受属性。”
答案 0 :(得分:0)
您实际上可以使用带有-F标志的sendevent,并指定一个文件名,该文件名包含您要执行的所有作业和服务。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title And Data Both</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
var filename ="console.log";
var newwin = window.open("","","width=200,height=100");
newwin.document.title="Title";
newwin.document.write("<h1>XXXX</h1>");
});
});
</script>
</head>
<body>
<button type="button">Get Substring</button>
</body>
</html>
戴夫