Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-05-18 07:43:06

0001 #!/bin/bash
0002 # runs 'git status' in each repository
0003 wd=$(pwd)
0004 echo ""
0005 for repo in . epic EDM4eic irt EICrecon juggler reconstruction_benchmarks; do
0006   if [ -d "$repo" ]; then
0007     cd $repo
0008     echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  $(basename `pwd`)"
0009     git status
0010     cd $wd
0011     echo ""
0012     echo ""
0013   fi
0014 done