mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-01 00:51:18 +01:00
9 lines
90 B
Bash
Executable File
9 lines
90 B
Bash
Executable File
#!/bin/bash
|
|
git $@
|
|
for i in sls*/; do
|
|
cd $i
|
|
echo $i
|
|
git $@
|
|
cd ..
|
|
done
|