Background
I work at a research institute, and have for a long time used the batch
command to submit job queues to our machines. However, a recent update changed the batch
command to be POSIX-compliant, the result of which is it doesn't take input files anymore. Thus, I would have to manually enter each command at the at>
prompt, rather than reusing an old queue input file and making minor changes where needed. This is rather time-consuming, and considering how terribly batch
handles jobs anyway, is almost a waste of time as opposed to just starting the jobs myself.
The Problem
The only replacement queues I have been able to find are either prohibitively expensive, or don't do the job. I am looking for a queue that simply runs the jobs it's given in temporal order; no priority queues or anything like that. What queues are available now that batch
doesn't function the same way?
batch
method usingat now < queue_list
. – Jonathan E. Landrum Oct 24 '14 at 20:49expect
to enter the information that you need at yourbatch
prompt.batch
would be what handles the queue. Whatexpect
provides is a way to automatically enter programmed information at abatch
prompt. – John1024 Oct 24 '14 at 21:17