1 #!/bin/bash
 2 
 3 for file in $TEST*/;
 4         do
 5                 echo "-------------"
 6                 pwd
 7                 echo "-------------"
 8                 cd $file
 9                 pwd
10                 echo "-------------"
11                 echo './go'
12                 cd ..
13                 echo "--------------"
14                 pwd
15                 echo "--------------"
16                 echo './makecoverage'
17 done
18 exit 0
Shell_1

相关文章:

  • 2021-12-06
  • 2022-12-23
  • 2021-10-09
  • 2022-01-11
  • 2022-02-08
  • 2021-11-20
  • 2022-02-16
猜你喜欢
  • 2021-09-05
  • 2021-11-14
  • 2021-11-20
  • 2021-12-19
  • 2022-12-23
  • 2021-09-28
  • 2022-12-23
相关资源
相似解决方案