This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
mistivia
/
dymc
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Ramo:
main
Ramos
Etiquetas
main
dymc
/
scripts
/
runall.sh
runall.sh
108 B
Link permanente
Histórico
Em bruto
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
for var in "$@"; do
./$var
if [ $? -ne 0 ]; then
exit 255
fi
done