Answers for "mac alias"

1

mac terminal alias

#In .bash_profile on MAC, not sure if this works for linux

#Terminal Command Aliases
alias e=exit
alias c=clear
alias r=reset

#Software Aliases
alias jn=jupyter-notebook
alias python=python3.7
Posted by: Guest on October-13-2020
0

mac alias

#alias for single command
alias python=python3.7

#alias for full path
alias python='/Library/Frameworks/Python.framework/Version/3.7/bin/python3'

#alias for command with options
alias la='ls -la'
Posted by: Guest on May-09-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language