Skip to content

Instantly share code, notes, and snippets.

@loopmode
Last active November 8, 2022 08:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loopmode/160059d5608f172d14519c2be5254148 to your computer and use it in GitHub Desktop.
Save loopmode/160059d5608f172d14519c2be5254148 to your computer and use it in GitHub Desktop.
abs_path for bash
#!/bin/bash
# realpath is not available on mac os
# this might be a useful alternative
abs_path () {
echo "$(cd $(dirname "$1");pwd)/$(basename "$1")"
}
echo $(abs_path .)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment