Skip to content

Instantly share code, notes, and snippets.

@amekusa
Last active December 8, 2024 15:38
Show Gist options
  • Save amekusa/ec78ce2875535f03d6be677592b85556 to your computer and use it in GitHub Desktop.
Save amekusa/ec78ce2875535f03d6be677592b85556 to your computer and use it in GitHub Desktop.
if ! command -v realpath &> /dev/null; then
realpath() {
case "$1" in
/*) echo "$1" ;;
~/*) echo "$HOME/${1:2}" ;;
./*) echo "$PWD/${1:2}" ;;
~) echo "$HOME" ;;
.) echo "$PWD" ;;
*) echo "$PWD/$1" ;;
esac
}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment