I'm using Terminal to run UNIX commands. I used to use UNIX a lot on Sun and HP workstations, but it's been about 15 years, so I'm pretty rusty. I seem to remember that I could set aliases, like so:
alias c clear
But, it comes back with:
-bash: alias: c: not found
-bash: alias: clear: not found
I've tried:
alias c 'clear'
alias c "clear"
but always get the same result.
What am I doing wrong?
alias c clear
But, it comes back with:
-bash: alias: c: not found
-bash: alias: clear: not found
I've tried:
alias c 'clear'
alias c "clear"
but always get the same result.
What am I doing wrong?