I qsub를 사용하여 클러스터 작업을 제출하기 위해 다음과 같은 방법이 : 우리가 할 수 있도록 우리가 bash는 스크립트 RETURN 및 CTRL-D를 인코딩 할 수있는 방법이 있나요인코딩 키보드 명령 상에, 배쉬 스크립트
Submitting jobs from standard input
To submit a PBS job by typing job specifications at the command line, the user types
qsub [options] <return>
then types any directives, then any tasks, followed by
(in UNIX) CTRL-D on a line by itself
(in Windows) CTRL-Z <return>
to terminate the input.
을 예 :
for i in path/*.txt; do echo "$i"; qsub [RETURN] /path2/mycode $i; [CTRL-D]; done