We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c66ba5 commit 6a8cb0cCopy full SHA for 6a8cb0c
1 file changed
DATA/production/configurations/asyncReco/async_pass.sh
@@ -48,6 +48,18 @@ if [[ -f list.list ]]; then
48
echo -e "\n"
49
fi
50
51
+# Could need sometimes to iterate just a subset of the input files
52
+#
53
+[ -z ${ALIEN_JDL_INPUTFILELIMIT} ] && ALIEN_JDL_INPUTFILELIMIT=($(cat list.list|wc -l))
54
+head -${ALIEN_JDL_INPUTFILELIMIT} list.list > list.listtmp && mv list.listtmp list.list
55
+echo "Will iterate ${ALIEN_JDL_INPUTFILELIMIT} input files"
56
+
57
+if [[ -f list.list ]]; then
58
+ echo "Processing will be on the following list of files:"
59
+ cat list.list
60
+ echo -e "\n"
61
+fi
62
63
POSITIONAL=()
64
while [[ $# -gt 0 ]]; do
65
key="$1"
0 commit comments