mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-20 02:40:03 +02:00
9 lines
74 B
Bash
Executable File
9 lines
74 B
Bash
Executable File
#!/bin/bash
|
|
git $1
|
|
for i in sls*/; do
|
|
cd $i
|
|
echo $i
|
|
git $1
|
|
cd ..
|
|
done
|