Preguntas etiquetadas con script

15
El script init.d no se ejecuta al inicio

Estoy alojando algunos servidores de juegos Counter-Strike en mi servidor dedicado usando la pantalla. Tengo este script que ejecuto cuando quiero iniciar / detener los servidores: #! /bin/sh # /etc/init.d/css-server # case "$1" in start) echo "Starting Nullus Imprimis war server..." screen -A...

14
¿Por qué obtengo [[: no encontrado al ejecutar un script?

Estoy tratando de escribir un script que tenga que verificar si existe un archivo. En la consola escribo if [[ -a /path/to/file.txt ]]; then echo "not mod"; else echo "mod"; fi y consigo not mod pero cuando escribo un guión para hacer lo mismo: #!/bin/sh if [[ -a /path/to/file.txt ]]; then...