mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-03-03 00:52:39 +01: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
|