Estoy intentando definir persistentemente algunos alias para mi uso diario de terminal. Comencé con este tutorial: Cómo definir persistentemente los alias en la Terminal , más precisamente con el comentario de Mike.
Tal como me sugirió, creé un archivo .bashrc
y enlazé con él .bash_profile
y .profile
.
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 la Terminal, 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 explicar por qué recibo este error y / o cómo solucionarlo?