Este team de especialistas pasados algunos días de investigación y de recopilar de información, hemos dado con los datos necesarios, deseamos que todo este artículo sea de utilidad para tu trabajo.
Ejemplo 1: verificar si el archivo existe bash
FILE=/etc/resolv.conf
if[ -f "$FILE"];thenecho"$FILE exists."elseecho"$FILE does not exist."fi
Ejemplo 2: secuencia de comandos .sh: compruebe si existe el archivo
#!/bin/bashif[ -e x.txt ]thenecho"ok"elseecho"nok"fi
Ejemplo 3: secuencia de comandos .sh: compruebe si existe el archivo
# The most readable option when checking whether a file exist or not is# to use the test command or the old '[' or the new '[[' in combination# with the if statement.# Any of the snippets below will check whether the /etc/resolv.conf file# exists:FILE=/etc/resolv.conf
iftest -f "$FILE";thenecho"$FILE exist"fi# orFILE=/etc/resolv.conf
if[ -f "$FILE"];thenecho"$FILE exist"fi# orFILE=/etc/resolv.conf
if[[ -f "$FILE"]];thenecho"$FILE exist"fi
Ejemplo 4: script bash si el archivo existe
[ -f /etc/resolv.conf ]&&echo"$FILE exists."
Ejemplo 5: comprobar si el archivo existe Shell
FILE=/etc/resolv.conf
if[ -f "$FILE"];thenecho"$FILE exists."fi
Aquí puedes ver las comentarios y valoraciones de los usuarios
Si sostienes algún titubeo o forma de limar nuestro división puedes dejar una observación y con mucho gusto lo analizaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)