I need a A substitue for Bash aliases (something that behaves basically like an alias but isn't an alias).
The reason I need such a substitute is because scripts cannot utilize aliases. That is to say --- an alias works fine when I execute it manually in Bash, but it fails to work when runned as part of a script. The solution I know of is to put the aliases in a temporary file but I don't want that approach.
Is there any substitute / similar command-shortcut I could utilize, some "next generation alias" (to give a metaphor) that will behave just like an alias but will also be naturally accessible for scripts (after its file was sourced)?
#!/bin/bash
, from aesthetic reasons? – Arcticooling Jan 25 '18 at 07:39