lo que tengo del codigo es esto
Código
#!/bin/bash APP_NAM=top CPU_LIMIT=50 echo $APP_NAM APP_CPU= 'ps aux |grep $APP_NAM |awk {'print $3'}' if [ $APP_CPU -lt $CPU_LIMIT ];then echo "normal" fi if [ $APP_CPU -ge $CPU_LIMIT ];then echo "warning" fi read -s -p "Presione enter para continuar..."
pero me al ejecutar me pone los sig errores