This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
iru
/
mongod
Seguir
5
Destacar
0
Fork
0
Archivos
Incidencias
0
Pull Requests
0
Wiki
Árbol:
af96d4ce34
Ramas
Etiquetas
master
mongod
/
run.sh
run.sh
109 B
Histórico
Raw
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