Абсолютный путь скрипта Bash с OS X

Я пытаюсь получить абсолютный путь к текущему запущенному сценарию на OS X.

Я видел много ответов на readlink -f $0, Однако, так как OS X readlink это то же самое, что BSD, но оно не работает (работает с версией GNU).

Есть ли готовое решение для этого?

19 ответов

Решение

Есть realpath() Функция C, которая выполнит эту работу, но я не вижу ничего доступного в командной строке. Вот быстрая и грязная замена:

#!/bin/bash

realpath() {
    [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}

realpath "$0"

Это печатает дословно путь, если он начинается с /, Если нет, то это должен быть относительный путь, поэтому он стоит $PWD спереди. #./ часть снимает ./ с фронта $1,

Эти три простых шага помогут решить эту и многие другие проблемы OS X:

  1. Установить Homebrew
  2. brew install coreutils
  3. grealpath .

(3) может быть изменен на просто realpathсм. (2) вывод

Тьфу. Мне показалось, что предыдущие ответы немного интересны по нескольким причинам: в частности, они не разрешают несколько уровней символьных ссылок, и они чрезвычайно "Bash-y". Хотя первоначальный вопрос явно запрашивает "сценарий Bash", в нем также упоминается BSD-подобный Mac OS X не-GNU readlink, Итак, вот попытка некоторой разумной переносимости (я проверил это с помощью bash как 'sh' и dash), разрешив произвольное количество символических ссылок; и он также должен работать с пробелами в пути (ах), хотя я не уверен в поведении, если есть пробел, базовое имя самой утилиты, так что, может, избежать этого?

#!/bin/sh
realpath() {
  OURPWD=$PWD
  cd "$(dirname "$1")"
  LINK=$(readlink "$(basename "$1")")
  while [ "$LINK" ]; do
    cd "$(dirname "$LINK")"
    LINK=$(readlink "$(basename "$1")")
  done
  REALPATH="$PWD/$(basename "$1")"
  cd "$OURPWD"
  echo "$REALPATH"
}
realpath "$@"

Надеюсь, что это может быть полезным для кого-то.

Более дружественный к командной строке вариант решения Python:

python -c "import os; print(os.path.realpath('$1'))"

Я проверил все ответы, но пропустил лучший (ИМХО) от Jason S 14 июля '16 в 3:12, оставил поле для комментариев.

Итак, вот оно, на случай, если кто-то вроде меня имеет тенденцию проверять ответы и не имеет времени просматривать все комментарии:

      $( cd "$(dirname "$0")" ; pwd -P )

Помощь:

      NAME
     pwd -- return working directory name

SYNOPSIS
     pwd [-L | -P]

DESCRIPTION
     The pwd utility writes the absolute pathname of the current working
     directory to the standard output.

     Some shells may provide a builtin pwd command which is similar or identi-
     cal to this utility.  Consult the builtin(1) manual page.

     The options are as follows:

     -L      Display the logical current working directory.

     -P      Display the physical current working directory (all symbolic
             links resolved).

Так как существует реальный путь, как указали другие:

// realpath.c
#include <stdio.h>
#include <stdlib.h>

int main (int argc, char* argv[])
{
  if (argc > 1) {
    for (int argIter = 1; argIter < argc; ++argIter) {
      char *resolved_path_buffer = NULL;
      char *result = realpath(argv[argIter], resolved_path_buffer);

      puts(result);

      if (result != NULL) {
        free(result);
      }
    }
  }

  return 0;
}

Makefile:

#Makefile
OBJ = realpath.o

%.o: %.c
      $(CC) -c -o $@ $< $(CFLAGS)

realpath: $(OBJ)
      gcc -o $@ $^ $(CFLAGS)

Затем скомпилируйте с make и вставьте мягкую ссылку с:
ln -s $(pwd)/realpath /usr/local/bin/realpath

abs_path () {    
   echo "$(cd $(dirname "$1");pwd)/$(basename "$1")"
}

dirname даст имя каталога /path/to/file, т.е. /path/to.

cd /path/to; pwd гарантирует, что путь является абсолютным.

basename даст только имя файла в /path/to/file, т.е.file.

Я искал решение для использования в сценарии предоставления системы, т. Е. Запустить до того, как Homebrew будет даже установлен. Не имея правильного решения, я просто перенесу задачу на кроссплатформенный язык, например, Perl:

script_abspath=$(perl -e 'use Cwd "abs_path"; print abs_path(@ARGV[0])' -- "$0")

Чаще всего мы на самом деле хотим, чтобы содержал каталог:

here=$(perl -e 'use File::Basename; use Cwd "abs_path"; print dirname(abs_path(@ARGV[0]));' -- "$0")

Используйте Python, чтобы получить его:

#!/usr/bin/env python
import os
import sys

print(os.path.realpath(sys.argv[1]))

Реальный путь для Mac OS X

realpath() {
    path=`eval echo "$1"`
    folder=$(dirname "$path")
    echo $(cd "$folder"; pwd)/$(basename "$path"); 
}

Пример со связанным путем:

realpath "../scripts/test.sh"

Пример с домашней папкой

realpath "~/Test/../Test/scripts/test.sh"

Итак, как вы можете видеть выше, я сделал снимок около 6 месяцев назад. Я полностью забыл об этом, пока не обнаружил, что снова нуждаюсь в подобной вещи. Я был совершенно потрясен, увидев, насколько это было элементарно; Уже около года я довольно интенсивно учу себя кодировать, но часто чувствую, что, может быть, я совсем ничего не узнал, когда дела идут хуже всего.

Я бы исключил вышеприведенное "решение", но мне действительно нравится, когда я пишу о том, как много я действительно узнал за последние несколько месяцев.

Но я отвлекся. Я сел и решил все это прошлой ночью. Объяснение в комментариях должно быть достаточным. Если вы хотите отслеживать копию, над которой я продолжаю работать, вы можете следовать этой сути. Это, вероятно, делает то, что вам нужно.

#!/bin/sh # dash bash ksh # !zsh (issues). G. Nixon, 12/2013. Public domain.

## 'linkread' or 'fullpath' or (you choose) is a little tool to recursively
## dereference symbolic links (ala 'readlink') until the originating file
## is found. This is effectively the same function provided in stdlib.h as
## 'realpath' and on the command line in GNU 'readlink -f'.

## Neither of these tools, however, are particularly accessible on the many
## systems that do not have the GNU implementation of readlink, nor ship
## with a system compiler (not to mention the requisite knowledge of C).

## This script is written with portability and (to the extent possible, speed)
## in mind, hence the use of printf for echo and case statements where they
## can be substituded for test, though I've had to scale back a bit on that.

## It is (to the best of my knowledge) written in standard POSIX shell, and
## has been tested with bash-as-bin-sh, dash, and ksh93. zsh seems to have
## issues with it, though I'm not sure why; so probably best to avoid for now.

## Particularly useful (in fact, the reason I wrote this) is the fact that
## it can be used within a shell script to find the path of the script itself.
## (I am sure the shell knows this already; but most likely for the sake of
## security it is not made readily available. The implementation of "$0"
## specificies that the $0 must be the location of **last** symbolic link in
## a chain, or wherever it resides in the path.) This can be used for some
## ...interesting things, like self-duplicating and self-modifiying scripts.

## Currently supported are three errors: whether the file specified exists
## (ala ENOENT), whether its target exists/is accessible; and the special
## case of when a sybolic link references itself "foo -> foo": a common error
## for beginners, since 'ln' does not produce an error if the order of link
## and target are reversed on the command line. (See POSIX signal ELOOP.)

## It would probably be rather simple to write to use this as a basis for
## a pure shell implementation of the 'symlinks' util included with Linux.

## As an aside, the amount of code below **completely** belies the amount
## effort it took to get this right -- but I guess that's coding for you.

##===-------------------------------------------------------------------===##

for argv; do :; done # Last parameter on command line, for options parsing.

## Error messages. Use functions so that we can sub in when the error occurs.

recurses(){ printf "Self-referential:\n\t$argv ->\n\t$argv\n" ;}
dangling(){ printf "Broken symlink:\n\t$argv ->\n\t"$(readlink "$argv")"\n" ;}
errnoent(){ printf "No such file: "$@"\n" ;} # Borrow a horrible signal name.

# Probably best not to install as 'pathfull', if you can avoid it.

pathfull(){ cd "$(dirname "$@")"; link="$(readlink "$(basename "$@")")"

## 'test and 'ls' report different status for bad symlinks, so we use this.

 if [ ! -e "$@" ]; then if $(ls -d "$@" 2>/dev/null) 2>/dev/null;  then
    errnoent 1>&2; exit 1; elif [ ! -e "$@" -a "$link" = "$@" ];   then
    recurses 1>&2; exit 1; elif [ ! -e "$@" ] && [ ! -z "$link" ]; then
    dangling 1>&2; exit 1; fi
 fi

## Not a link, but there might be one in the path, so 'cd' and 'pwd'.

 if [ -z "$link" ]; then if [ "$(dirname "$@" | cut -c1)" = '/' ]; then
   printf "$@\n"; exit 0; else printf "$(pwd)/$(basename "$@")\n"; fi; exit 0
 fi

## Walk the symlinks back to the origin. Calls itself recursivly as needed.

 while [ "$link" ]; do
   cd "$(dirname "$link")"; newlink="$(readlink "$(basename "$link")")"
   case "$newlink" in
    "$link") dangling 1>&2 && exit 1                                       ;;
         '') printf "$(pwd)/$(basename "$link")\n"; exit 0                 ;;
          *) link="$newlink" && pathfull "$link"                           ;;
   esac
 done
 printf "$(pwd)/$(basename "$newlink")\n"
}

## Demo. Install somewhere deep in the filesystem, then symlink somewhere 
## else, symlink again (maybe with a different name) elsewhere, and link
## back into the directory you started in (or something.) The absolute path
## of the script will always be reported in the usage, along with "$0".

if [ -z "$argv" ]; then scriptname="$(pathfull "$0")"

# Yay ANSI l33t codes! Fancy.
 printf "\n\033[3mfrom/as: \033[4m$0\033[0m\n\n\033[1mUSAGE:\033[0m   "
 printf "\033[4m$scriptname\033[24m [ link | file | dir ]\n\n         "
 printf "Recursive readlink for the authoritative file, symlink after "
 printf "symlink.\n\n\n         \033[4m$scriptname\033[24m\n\n        "
 printf " From within an invocation of a script, locate the script's "
 printf "own file\n         (no matter where it has been linked or "
 printf "from where it is being called).\n\n"

else pathfull "$@"
fi

В macOS единственное решение, которое я нашел для этого, которое надежно обрабатывает символические ссылки, - это использование realpath. Поскольку для этого требуетсяbrew install coreutils, Я просто автоматизировал этот шаг. Моя реализация выглядит так:

#!/usr/bin/env bash

set -e

if ! which realpath >&/dev/null; then
  if ! which brew >&/dev/null; then
    msg="ERROR: This script requires brew. See https://brew.sh for installation instructions."
    echo "$(tput setaf 1)$msg$(tput sgr0)" >&2
    exit 1
  fi
  echo "Installing coreutils/realpath"
  brew install coreutils >&/dev/null
fi

thisDir=$( dirname "`realpath "$0"`" )
echo "This script is run from \"$thisDir\""


Это ошибки, если их нет brewустановлен, но вы также можете просто установить его. Мне просто неудобно автоматизировать что-то, что извлекает произвольный код Ruby из сети.

Обратите внимание, что это автоматизированный вариант ответа Олега Михеева.


Один важный тест

Хороший тест любого из этих решений:

  1. поместите код в файл сценария где-нибудь
  2. в другом каталоге символическая ссылка (ln -s) в этот файл
  3. запустить скрипт из этой символической ссылки

Разыменовывает ли решение символическую ссылку и дает ли вам исходный каталог? Если да, то это работает.

Кажется, это работает для OSX, не требует никаких двоичных файлов и было извлечено отсюда

function normpath() {
  # Remove all /./ sequences.
  local path=${1//\/.\//\/}

  # Remove dir/.. sequences.
  while [[ $path =~ ([^/][^/]*/\.\./) ]]; do
    path=${path/${BASH_REMATCH[0]}/}
  done
  echo $path
}

Мне это нравится:

#!/usr/bin/env bash
function realpath() {
    local _X="$PWD"
    local _LNK=$1
    cd "$(dirname "$_LNK")"
    if [ -h "$_LNK" ]; then
        _LNK="$(readlink "$_LNK")"
        cd "$(dirname "$_LNK")"
    fi
    echo "$PWD/$(basename "$_LNK")"
    cd "$_X"
}

Просто идея использованияpushd:

      realpath() {
  eval echo "$(pushd $(dirname "$1") | cut -d' ' -f1)/$(basename "$1")"
}

The evalиспользуется для расширения тильды, например~/Downloads.

Посмотрите на этот вопрос. Я нашел ответ там более кратким.

получение пути, где скрипт сценария osx находится внутри сценария... когда путь имеет пробел

Мне нужен был realpathзамена в OS X, которая правильно работает на путях с символическими ссылками и родительскими ссылками, как иreadlink -fбудет. Это включает разрешение символических ссылок в пути перед разрешением родительских ссылок; например, если вы установили homebrewcoreutils бутылка, затем запустите:

$ ln -s /var/log/cups /tmp/linkeddir  # symlink to another directory
$ greadlink -f /tmp/linkeddir/..      # canonical path of the link parent
/private/var/log

Обратите внимание, что readlink -f решил /tmp/linkeddir до решения..ссылка на родительский каталог. Конечно, нетreadlink -fна Mac тоже.

Итак, как часть реализации bash для realpath Я повторно реализовал то, что GNUlib canonicalize_filename_mode(path, CAN_ALL_BUT_LAST)вызов функции в Bash 3.2; это также вызов функции, который GNUreadlink -f делает:

# shellcheck shell=bash
set -euo pipefail

_contains() {
    # return true if first argument is present in the other arguments
    local elem value

    value="$1"
    shift

    for elem in "$@"; do 
        if [[ $elem == "$value" ]]; then
            return 0
        fi
    done
    return 1
}

_canonicalize_filename_mode() {
    # resolve any symlink targets, GNU readlink -f style
    # where every path component except the last should exist and is
    # resolved if it is a symlink. This is essentially a re-implementation
    # of canonicalize_filename_mode(path, CAN_ALL_BUT_LAST).
    # takes the path to canonicalize as first argument

    local path result component seen
    seen=()
    path="$1"
    result="/"
    if [[ $path != /* ]]; then  # add in current working dir if relative
        result="$PWD"
    fi
    while [[ -n $path ]]; do
        component="${path%%/*}"
        case "$component" in
            '') # empty because it started with /
                path="${path:1}" ;;
            .)  # ./ current directory, do nothing
                path="${path:1}" ;;
            ..) # ../ parent directory
                if [[ $result != "/" ]]; then  # not at the root?
                    result="${result%/*}"      # then remove one element from the path
                fi
                path="${path:2}" ;;
            *)
                # add this component to the result, remove from path
                if [[ $result != */ ]]; then
                    result="$result/"
                fi
                result="$result$component"
                path="${path:${#component}}"
                # element must exist, unless this is the final component
                if [[ $path =~ [^/] && ! -e $result ]]; then
                    echo "$1: No such file or directory" >&2
                    return 1
                fi
                # if the result is a link, prefix it to the path, to continue resolving
                if [[ -L $result ]]; then
                    if _contains "$result" "${seen[@]+"${seen[@]}"}"; then
                        # we've seen this link before, abort
                        echo "$1: Too many levels of symbolic links" >&2
                        return 1
                    fi
                    seen+=("$result")
                    path="$(readlink "$result")$path"
                    if [[ $path = /* ]]; then
                        # if the link is absolute, restart the result from /
                        result="/"
                    elif [[ $result != "/" ]]; then
                        # otherwise remove the basename of the link from the result
                        result="${result%/*}"
                    fi
                elif [[ $path =~ [^/] && ! -d $result ]]; then
                    # otherwise all but the last element must be a dir
                    echo "$1: Not a directory" >&2
                    return 1
                fi
                ;;
        esac
    done
    echo "$result"
}

Он включает обнаружение циклических символических ссылок, выход из которых происходит, если один и тот же (промежуточный) путь встречается дважды.

Если все, что вам нужно, это readlink -f, то вы можете использовать это как:

readlink() {
    if [[ $1 != -f ]]; then  # poor-man's option parsing
        # delegate to the standard readlink command
        command readlink "$@"
        return
    fi

    local path result seenerr
    shift
    seenerr=
    for path in "$@"; do
        # by default readlink suppresses error messages
        if ! result=$(_canonicalize_filename_mode "$path" 2>/dev/null); then
            seenerr=1
            continue
        fi
        echo "$result"
    done
    if [[ $seenerr ]]; then
        return 1;
    fi
}

За realpath, Мне тоже нужно --relative-to а также --relative-base support, которые дают вам относительные пути после канонизации:

_realpath() {
    # GNU realpath replacement for bash 3.2 (OS X)
    # accepts --relative-to= and --relative-base options
    # and produces canonical (relative or absolute) paths for each
    # argument on stdout, errors on stderr, and returns 0 on success
    # and 1 if at least 1 path triggered an error.

    local relative_to relative_base seenerr path

    relative_to=
    relative_base=
    seenerr=

    while [[ $# -gt 0 ]]; do
        case $1 in
            "--relative-to="*)
                relative_to=$(_canonicalize_filename_mode "${1#*=}")
                shift 1;;
            "--relative-base="*)
                relative_base=$(_canonicalize_filename_mode "${1#*=}")
                shift 1;;
            *)
                break;;
        esac
    done

    if [[
        -n $relative_to
        && -n $relative_base
        && ${relative_to#${relative_base}/} == "$relative_to"
    ]]; then
        # relative_to is not a subdir of relative_base -> ignore both
        relative_to=
        relative_base=
    elif [[ -z $relative_to && -n $relative_base ]]; then
        # if relative_to has not been set but relative_base has, then
        # set relative_to from relative_base, simplifies logic later on
        relative_to="$relative_base"
    fi

    for path in "$@"; do
        if ! real=$(_canonicalize_filename_mode "$path"); then
            seenerr=1
            continue
        fi

        # make path relative if so required
        if [[
            -n $relative_to
            && ( # path must not be outside relative_base to be made relative
                -z $relative_base || ${real#${relative_base}/} != "$real"
            )
        ]]; then
            local common_part parentrefs

            common_part="$relative_to"
            parentrefs=
            while [[ ${real#${common_part}/} == "$real" ]]; do
                common_part="$(dirname "$common_part")"
                parentrefs="..${parentrefs:+/$parentrefs}"
            done

            if [[ $common_part != "/" ]]; then
                real="${parentrefs:+${parentrefs}/}${real#${common_part}/}"
            fi
        fi

        echo "$real"
    done
    if [[ $seenerr ]]; then
        return 1
    fi
}

if ! command -v realpath > /dev/null 2>&1; then
    # realpath is not available on OSX unless you install the `coreutils` brew
    realpath() { _realpath "$@"; }
fi

Я включил модульные тесты в свой запрос на проверку кода для этого кода.

Для разработчиков nodejs на Mac, использующих bash:

      realpath() {
  node -p "fs.realpathSync('$1')"
}

Основываясь на общении с комментатором, я согласился, что это очень сложно и не имеет тривиального способа реализовать realpath, который ведет себя так же, как Ubuntu.

Но следующая версия, может обрабатывать угловые случаи, лучший ответ не может и удовлетворить мои ежедневные потребности в MacBook. Поместите этот код в ваш ~/.bashrc и запомните:

  • arg может быть только 1 файлом или директорией, без подстановочных знаков
  • без пробелов в директории или имени файла
  • по крайней мере, существует файл или родительский каталог dir
  • не стесняйтесь использовать... / вещь, это безопасно

    # 1. if is a dir, try cd and pwd
    # 2. if is a file, try cd its parent and concat dir+file
    realpath() {
     [ "$1" = "" ] && return 1

     dir=`dirname "$1"`
     file=`basename "$1"`

     last=`pwd`

     [ -d "$dir" ] && cd $dir || return 1
     if [ -d "$file" ];
     then
       # case 1
       cd $file && pwd || return 1
     else
       # case 2
       echo `pwd`/$file | sed 's/\/\//\//g'
     fi

     cd $last
    }
Другие вопросы по тегам