Soy del mundo de Linux donde, si quiero generar un archivo, escribo, por ejemplo:
'fuente / etc / perfil'
¿Cómo hago esto en Mac?
Soy del mundo de Linux donde, si quiero generar un archivo, escribo, por ejemplo:
'fuente / etc / perfil'
¿Cómo hago esto en Mac?
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.
Estoy usando bash como mi shell en mi Mac y puedo usar "source". Por ejemplo, source .bash_profile
Lea otras preguntas en las etiquetas command-line administrator serveradmin