This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
iru
/
mongod
Vigiar
5
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Árvore:
af96d4ce34
Ramos
Etiquetas
master
mongod
/
run.sh
run.sh
109 B
Histórico
Em bruto
1
2
3
4
5
6
7
8
#!/bin/sh
trap cleanup 0 1 2 3 6 15
cleanup()
{
pkill -2 mongod
}
exec "/usr/bin/mongod" "$@" &
wait