Impossibile aprire crontab

1

Ho provato a eseguire crontab sul mio Mac per la prima volta e ho ottenuto quanto segue:

$ 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

Non ho mai usato crontab sul mio Mac e non ho idea del perché stia cercando di raggiungere lo strumento sublime della riga di comando.

Tuttavia, se digito subl -w nella mia console, sublime si apre a destra.

Che sta succedendo qui?

    
posta ShrewdSimian 17.06.2018 - 01:11
fonte

1 risposta

1

Questo è un problema noto con crontab e la variabile EDITOR che devi avere impostato su subl -w . Per citare dalla pagina man di 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 "$@"

Ovviamente, per Sublime Text puoi cambiare bbedit in subl in quello script.

    
risposta data 17.06.2018 - 03:44
fonte

Leggi altre domande sui tag