Cómo obtener un archivo en Mac

-2

Soy del mundo de Linux donde, si quiero generar un archivo, escribo, por ejemplo:

'fuente / etc / perfil'

¿Cómo hago esto en Mac?

    
pregunta cparrish817 23.03.2013 - 14:04

2 respuestas

6

El terminal usa Bash de manera predeterminada y / bin / sh también es Bash, por lo que la fuente debería funcionar en la mayoría de los lugares.

la fuente no está definida por POSIX , pero está permitida por Bash en modo POSIX o cuando se invoca como / bin / sh.

Los mensajes de ayuda para fuente y. son idénticos:

$ help source .
source: source filename [arguments]
    Read and execute commands from FILENAME and return.  The pathnames
    in $PATH are used to find the directory containing FILENAME.  If any
    ARGUMENTS are supplied, they become the positional parameters when
    FILENAME is executed.
.: . filename [arguments]
    Read and execute commands from FILENAME and return.  The pathnames
    in $PATH are used to find the directory containing FILENAME.  If any
    ARGUMENTS are supplied, they become the positional parameters when
    FILENAME is executed.
    
respondido por el user495470 23.03.2013 - 14:45
1

Estoy usando bash como mi shell en mi Mac y puedo usar "source". Por ejemplo, source .bash_profile

    
respondido por el Scott Walter 23.03.2013 - 14:51

Lea otras preguntas en las etiquetas