Skip to content

Instantly share code, notes, and snippets.

@z-------------
Last active October 20, 2021 08:03
Show Gist options
  • Save z-------------/059449f651d13b59a9970dbe15de2a08 to your computer and use it in GitHub Desktop.
Save z-------------/059449f651d13b59a9970dbe15de2a08 to your computer and use it in GitHub Desktop.
function aliasexpand { # $* command
ALIASRET=$(alias $1 2>/dev/null)
if [[ $? -ne 0 ]]; then
# not an alias
ALIAS=$1
else
ALIASLAYER=$(echo "$ALIASRET" | cut -d '=' -f2 | sed "s/^'//" | sed "s/'$//")
ALIAS=$(aliasexpand $ALIASLAYER)
fi
shift
echo $ALIAS $@
}
if [[ $# -gt 0 ]]; then
aliasexpand $*
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment