Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-05-08 02:18:42

0001 #!/bin/bash
0002 # Get the command from the first argument
0003 COMMAND=$1
0004 # Find directories exactly two levels deep
0005 find . -mindepth 2 -maxdepth 2 -type d | while read -r dir; do
0006     echo "Processing directory: $dir"
0007     crab $COMMAND -d "$dir"
0008 done