|
|
|
|
|
by ekke
4687 days ago
|
|
Why not? Because it changes the meaning of '.': ~$ echo date > d.sh
~$ d.sh
-bash: d.sh: command not found
~$ . d.sh
06:37:21 EDT 2013
~$ alias .='cd ../'
~$ . d.sh
/home$ Is not works!
But another alias with no previous meaning would do well - i use 'up' :) |
|