[best practices question]
I'm just getting started with unix - and I find some of the common operations e.g. creating symbolic links ln -s
or renaming files unintuitive.mv
I am debating whether to define my own aliases e.g. , rename
symlink
instead.
Is this a bad idea? why (not)?
Note: I'm not doing sysadmin stuff, and am just using the unix terminal for productivity on my own personal computer.
Clarification: By this I mean defining my own syntax for any unintuitive built in bash command - such that I can understand them better - but it would be exclusive to machines I control (access to my aliases)
rename
is a bad example as it is a generally recognized command. I am referring to aliases that I personally think are intuitive - but would not be universally available - such as the symlink. Edited the question to reflect this. – Rosabel Marquez Feb 18 '21 at 19:58