Jpp  18.3.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
qlib.csh
Go to the documentation of this file.
1 #!/bin/csh
2 #
3 #
4 # \author mdejong
5 #
6 #--------------------------------------------------------------------------------------
7 #
8 # Utility script for batch queue functions.
9 #
10 #--------------------------------------------------------------------------------------
11 
12 
13 #
14 # Put command(s) in given queue; do not submit job.
15 #
16 # \param 1 queue name
17 # \param 2-N command(s)
18 #
19 alias put_queue 'eval echo -n "\!:2*;" >>! \!:1'
20 
21 
22 #
23 # Put command(s) in given queue and submit job.
24 #
25 # \param 1 queue name
26 # \param 2-N command(s)
27 #
28 alias puts_queue 'eval echo "\!:2*" >>! \!:1'
function puts_queue()
Definition: qlib.sh:34
function put_queue()
Definition: qlib.sh:19