|
||||
File indexing completed on 2024-04-06 12:06:26
0001 #!/bin/csh 0002 if (${1} == "") then 0003 echo "No input run list. Please use command: ./run_date.csh runsets" 0004 exit 0005 endif 0006 touch runsets_1 0007 foreach i (`cat $1`) 0008 echo ${i} 0009 ./das_client.py --query="run=${i} | grep run.start_time" | grep 20 > tmp 0010 set DATE=`cat tmp` 0011 echo ${i} ${DATE} >> runsets_1 0012 rm tmp 0013 end
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |