Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:56:48

0001 #!/bin/sh
0002 RUNNR=$1
0003 CMSDISK0_MTCC_DIR="/data0/mtcc_0_9_0";
0004 echo $CMSDISK0_MTCC_DIR
0005 
0006 case $# in
0007 0)
0008         ssh `whoami`@cmsdisk0.cern.ch "ls -lh ${CMSDISK0_MTCC_DIR}";
0009         ;;
0010 1)
0011         RUNNR=$1;
0012         ssh `whoami`@cmsdisk0.cern.ch "ls -lh ${CMSDISK0_MTCC_DIR}" | grep ${RUNNR} | grep '\.dat'
0013         ;;
0014 *)
0015         ;;
0016 esac
0017