Estoy tratando de definir persistentemente algunos alias para mi uso diario de la terminal. Empecé con este tutorial: Cómo definir persistentemente los alias en Terminal más precisamente con el comentario de Mike.
Como me sugirió, creé un .bashrc
y un enlace simbólico .bash_profile
y .profile
a ella.
Mis dos alias que creé en .bashrc
son los siguientes:
alias showFiles= ‘defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder’ alias hideFiles= ‘defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder’
Ahora tengo un problema, cuando abro una nueva ventana de bash en Terminal, me aparece este mensaje de error:
-bash: alias: ‘defaults: not found
-bash: alias: write: not found
-bash: alias: com.apple.finder: not found
-bash: alias: AppleShowAllFiles: not found
-bash: alias: TRUE: not found
No matching processes belonging to you were found
-bash: alias: ‘defaults: not found
-bash: alias: write: not found
-bash: alias: com.apple.finder: not found
-bash: alias: AppleShowAllFiles: not found
-bash: alias: FALSE: not found
No matching processes belonging to you were found
¿Podría alguien explicarme por qué me sale este error y/o cómo solucionarlo?