One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
#!/bin/bash | |
# | |
# Mata procesos colgados en servidor | |
# | |
colgado=quiiot | |
procesos=`ps -fea | grep $colgado | grep -v grep` | |
if [[ "$procesos" != "" ]] | |
then | |
for PROCESO in `echo "$procesos" | awk '{ print $2 }'` |