No se puede abrir crontab

1

Intenté ejecutar crontab en mi Mac por primera vez y obtuve lo siguiente:

$ crontab -e
crontab: no crontab for User - using an empty one
crontab: subl -w: No such file or directory
crontab: "subl -w" exited with status 1

Nunca he usado crontab en mi Mac y no tengo idea de por qué está tratando de llegar a la sublime herramienta de línea de comandos.

Sin embargo, si escribo subl -w en mi consola, sublime se abre de inmediato.

¿Qué está pasando aquí?

    
pregunta ShrewdSimian 17.06.2018 - 01:11

1 respuesta

1

Este es un problema conocido con crontab y la variable EDITOR que debe haber establecido en subl -w . Para citar desde la página man de bbedit :

Some tools (notably crontab), will not work correctly if your EDITOR variable 
consists of multiple terms. You can work around this by creating a simple shell 
script that calls bbedit -w, then using the shell script as your EDITOR. e.g.:

                #!/bin/sh
                bbedit -w "$@"

Por supuesto, para Texto sublime puedes cambiar de bbedit a subl en ese script.

    
respondido por el Tony Williams 17.06.2018 - 03:44

Lea otras preguntas en las etiquetas