59
The benefits of using scripts over aliases
(evanhahn.com)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
I use aliases for renaming commands and making bash scripts look like real commands to the rest of my team.
Why not make them executable and stick them in bin
Mostly because there's a profile everyone sources that's relatively straightforward to that's straightforward to get access to. Whereas I'd never get root level access.
You don't need root level access though. What I usually do is stick a
PATH="$PATH:$HOME/.local/bin
and then place all the scripts in there.Wouldn't that require me to have access to everyone's home directory and need to dump the scripts in everyone's?
Potentially I could set up an alt bin directory everyone has access to and configure that in the shared profile, the only drawback there is it might be less obvious whats going on if something breaks and someone else needs to take a look at it.
It was just an example of what I'm doing for my particular situation where I don't have root access and I want some personal scripts for myself, I'm not saying you should choose the same location. If everyone is already sourcing the same file, I expect there's already a shared storage you are maintaining that everyone has access to.
About something breaking, I guess it's up to you and your team if you prefer functions, but it also means not everyone will need to be annoyed when someone else's code has a small syntax error. And also I expect the only errors you are able to get feedback about right now would be only structural syntax errors for the function declaration (I expect you don't have unit tests or anything like that for your bash functions..) so technically a function could still be broken and you wouldn't know until you use it.
Scripts also give the advantage of being able to use other languages beyond bash, if perl/python or others are available.
Anyway, you are free to have your reasons, I was just saying that root access is not necessarily needed.