Preguntas etiquetadas con command-line

235
¿Cómo verificar si un comando tuvo éxito?

¿Hay alguna forma de verificar si hay un error al ejecutar un comando? Ejemplo: test1=`sed -i "/:@/c connection.url=jdbc:oracle:thin:@$ip:1521:$dataBase" $search` valid $test1 function valid () { if $test -eq 1; then echo "OK" else echo "ERROR" fi } Ya intenté hacer eso, pero parece que...