-bash: Applications / mvim: / bin / sh: mal intérprete: operación no permitida

3

Estoy recibiendo un error extraño con el script mvim que se supone que debe iniciar la interfaz de MacVim.

Ver más abajo para el problema. /bin/sh está bien, mvim era chmod +x 'd, otros scripts /bin/sh funcionan bien ... Estoy perdido aquí.

jan@MacBook-Pro ~ $ file Applications/mvim 
Applications/mvim: POSIX shell script text executable
jan@MacBook-Pro ~ $ head Applications/mvim 
#!/bin/sh
#
# This shell script passes all its arguments to the binary inside the
# MacVim.app application bundle.  If you make links to this script as view,
# gvim, etc., then it will peek at the name used to call it and set options
# appropriately.
#
# Based on a script by Wout Mertens and suggestions from Laurent Bihanic.  This
# version is the fault of Benji Fisher, 16 May 2005 (with modifications by Nico
# Weber and Bjorn Winckler, Aug 13 2007).
jan@MacBook-Pro ~ $ chmod +x Applications/mvim
jan@MacBook-Pro ~ $ Applications/mvim 
-bash: Applications/mvim: /bin/sh: bad interpreter: Operation not permitted

A continuación puede ver que /bin/sh scripts se ejecutan bien ...

jan@MacBook-Pro ~ $ vim test.sh
jan@MacBook-Pro ~ $ chmod +x test.sh 
jan@MacBook-Pro ~ $ ./test.sh 
hi
jan@MacBook-Pro ~ $ cat test.sh 
#!/bin/sh

echo "hi"
    
pregunta houbysoft 24.04.2012 - 23:13

1 respuesta

4

Hmm, por lo que parece que OS X pensó que era una buena idea poner en cuarentena mi script, por alguna razón, y no decirme nada.

jan@MacBook-Pro ~ $ xattr -d com.apple.quarantine Applications/mvim 

soluciona el problema.

    
respondido por el houbysoft 24.04.2012 - 23:15

Lea otras preguntas en las etiquetas