使用Bash在给定当前目录的情况下将绝对路径转换为相对路径

时间:2010-04-02 01:42:39

标签: bash shell path relative-path absolute-path

示例:

absolute="/foo/bar"
current="/foo/baz/foo"

# Magic

relative="../../bar"

如何制作魔法(希望不是太复杂的代码......)?

24 个答案:

答案 0 :(得分:169)

使用GNU coreutils 8.23中的realpath是最简单的,我认为:

$ realpath --relative-to="$file1" "$file2"

例如:

$ realpath --relative-to=/usr/bin/nmap /tmp/testing
../../../tmp/testing

答案 1 :(得分:155)

$ python -c "import os.path; print os.path.relpath('/foo/bar', '/foo/baz/foo')"

给出:

../../bar

答案 2 :(得分:30)

这是对@pini目前评价最高的解决方案进行了更正,全功能的改进(遗憾地只处理了几个案例)

提醒:'-z'测试字符串是否为零长度(=空)和'-n'测试字符串为空。

# both $1 and $2 are absolute paths beginning with /
# returns relative path to $2/$target from $1/$source
source=$1
target=$2

common_part=$source # for now
result="" # for now

while [[ "${target#$common_part}" == "${target}" ]]; do
    # no match, means that candidate common part is not correct
    # go up one level (reduce common part)
    common_part="$(dirname $common_part)"
    # and record that we went back, with correct / handling
    if [[ -z $result ]]; then
        result=".."
    else
        result="../$result"
    fi
done

if [[ $common_part == "/" ]]; then
    # special case for root (no common path)
    result="$result/"
fi

# since we now have identified the common part,
# compute the non-common part
forward_part="${target#$common_part}"

# and now stick all parts together
if [[ -n $result ]] && [[ -n $forward_part ]]; then
    result="$result$forward_part"
elif [[ -n $forward_part ]]; then
    # extra slash removal
    result="${forward_part:1}"
fi

echo $result

测试用例:

compute_relative.sh "/A/B/C" "/A"           -->  "../.."
compute_relative.sh "/A/B/C" "/A/B"         -->  ".."
compute_relative.sh "/A/B/C" "/A/B/C"       -->  ""
compute_relative.sh "/A/B/C" "/A/B/C/D"     -->  "D"
compute_relative.sh "/A/B/C" "/A/B/C/D/E"   -->  "D/E"
compute_relative.sh "/A/B/C" "/A/B/D"       -->  "../D"
compute_relative.sh "/A/B/C" "/A/B/D/E"     -->  "../D/E"
compute_relative.sh "/A/B/C" "/A/D"         -->  "../../D"
compute_relative.sh "/A/B/C" "/A/D/E"       -->  "../../D/E"
compute_relative.sh "/A/B/C" "/D/E/F"       -->  "../../../D/E/F"

答案 3 :(得分:25)

#!/bin/bash
# both $1 and $2 are absolute paths
# returns $2 relative to $1

source=$1
target=$2

common_part=$source
back=
while [ "${target#$common_part}" = "${target}" ]; do
  common_part=$(dirname $common_part)
  back="../${back}"
done

echo ${back}${target#$common_part/}

答案 4 :(得分:20)

自2001年以来,它已内置于Perl,因此几乎适用于您可以想象的每个系统,甚至VMS

perl -e 'use File::Spec; print File::Spec->abs2rel(@ARGV) . "\n"' FILE BASE

此外,解决方案很容易理解。

所以对你的例子来说:

perl -e 'use File::Spec; print File::Spec->abs2rel(@ARGV) . "\n"' $absolute $current

......会工作得很好。

答案 5 :(得分:15)

Python的os.path.relpath作为shell函数

这个relpath练习的目标是模仿Python 2.7的os.path.relpath函数(可从Python 2.6版获得,但仅在2.7中正常工作),如xni所提出的。因此,某些结果可能与其他答案中提供的功能不同。

(我没有在路径中测试新行,因为它违反了从ZSH调用python -c的验证。通过一些努力肯定是可能的。)

关于Bash中的“魔法”,我已经放弃了很久以前在Bash中寻找魔法,但我已经找到了我需要的所有魔法,然后是ZSH中的一些魔法。

因此,我提出了两种实现方式。

第一个实现旨在完全符合 POSIX标准。我在Debian 6.0.6“Squeeze”上用/bin/dash测试了它。它也适用于OS X 10.8.3上的/bin/sh,它实际上是Bash版本3.2,假装是POSIX shell。

第二个实现是一个ZSH shell函数,它可以抵御路径中的多个斜杠和其他麻烦。如果你有ZSH可用,这是推荐的版本,即使你是以下面提供的脚本形式(即来自另一个shell的shebang #!/usr/bin/env zsh)调用它。

最后,我编写了一个ZSH脚本,根据其他答案提供的测试用例,验证relpath$PATH命令的输出。我在这些测试中添加了一些空格,制表符和标点符号(例如! ? *),并在vim-powerline中添加了另外一个带有异国情调的UTF-8字符的测试。

POSIX shell函数

首先,符合POSIX的shell功能。它适用于各种路径,但不会清除多个斜杠或解析符号链接。

#!/bin/sh
relpath () {
    [ $# -ge 1 ] && [ $# -le 2 ] || return 1
    current="${2:+"$1"}"
    target="${2:-"$1"}"
    [ "$target" != . ] || target=/
    target="/${target##/}"
    [ "$current" != . ] || current=/
    current="${current:="/"}"
    current="/${current##/}"
    appendix="${target##/}"
    relative=''
    while appendix="${target#"$current"/}"
        [ "$current" != '/' ] && [ "$appendix" = "$target" ]; do
        if [ "$current" = "$appendix" ]; then
            relative="${relative:-.}"
            echo "${relative#/}"
            return 0
        fi
        current="${current%/*}"
        relative="$relative${relative:+/}.."
    done
    relative="$relative${relative:+${appendix:+/}}${appendix#/}"
    echo "$relative"
}
relpath "$@"

ZSH shell函数

现在,更强大的zsh版本。如果您希望它解析真实路径的参数(la realpath -f(可在Linux coreutils包中找到)),请将第3行和第4行的:a替换为:A

要在zsh中使用此功能,请删除第一行和最后一行,并将其放在$FPATH变量中的目录中。

#!/usr/bin/env zsh
relpath () {
    [[ $# -ge 1 ]] && [[ $# -le 2 ]] || return 1
    local target=${${2:-$1}:a} # replace `:a' by `:A` to resolve symlinks
    local current=${${${2:+$1}:-$PWD}:a} # replace `:a' by `:A` to resolve symlinks
    local appendix=${target#/}
    local relative=''
    while appendix=${target#$current/}
        [[ $current != '/' ]] && [[ $appendix = $target ]]; do
        if [[ $current = $appendix ]]; then
            relative=${relative:-.}
            print ${relative#/}
            return 0
        fi
        current=${current%/*}
        relative="$relative${relative:+/}.."
    done
    relative+=${relative:+${appendix:+/}}${appendix#/}
    print $relative
}
relpath "$@"

测试脚本

最后,测试脚本。它接受一个选项,即-v以启用详细输出。

#!/usr/bin/env zsh
set -eu
VERBOSE=false
script_name=$(basename $0)

usage () {
    print "\n    Usage: $script_name SRC_PATH DESTINATION_PATH\n" >&2
    exit ${1:=1}
}
vrb () { $VERBOSE && print -P ${(%)@} || return 0; }

relpath_check () {
    [[ $# -ge 1 ]] && [[ $# -le 2 ]] || return 1
    target=${${2:-$1}}
    prefix=${${${2:+$1}:-$PWD}}
    result=$(relpath $prefix $target)
    # Compare with python's os.path.relpath function
    py_result=$(python -c "import os.path; print os.path.relpath('$target', '$prefix')")
    col='%F{green}'
    if [[ $result != $py_result ]] && col='%F{red}' || $VERBOSE; then
        print -P "${col}Source: '$prefix'\nDestination: '$target'%f"
        print -P "${col}relpath: ${(qq)result}%f"
        print -P "${col}python:  ${(qq)py_result}%f\n"
    fi
}

run_checks () {
    print "Running checks..."

    relpath_check '/    a   b/å/⮀*/!' '/    a   b/å/⮀/xäå/?'

    relpath_check '/'  '/A'
    relpath_check '/A'  '/'
    relpath_check '/  & /  !/*/\\/E' '/'
    relpath_check '/' '/  & /  !/*/\\/E'
    relpath_check '/  & /  !/*/\\/E' '/  & /  !/?/\\/E/F'
    relpath_check '/X/Y' '/  & /  !/C/\\/E/F'
    relpath_check '/  & /  !/C' '/A'
    relpath_check '/A /  !/C' '/A /B'
    relpath_check '/Â/  !/C' '/Â/  !/C'
    relpath_check '/  & /B / C' '/  & /B / C/D'
    relpath_check '/  & /  !/C' '/  & /  !/C/\\/Ê'
    relpath_check '/Å/  !/C' '/Å/  !/D'
    relpath_check '/.A /*B/C' '/.A /*B/\\/E'
    relpath_check '/  & /  !/C' '/  & /D'
    relpath_check '/  & /  !/C' '/  & /\\/E'
    relpath_check '/  & /  !/C' '/\\/E/F'

    relpath_check /home/part1/part2 /home/part1/part3
    relpath_check /home/part1/part2 /home/part4/part5
    relpath_check /home/part1/part2 /work/part6/part7
    relpath_check /home/part1       /work/part1/part2/part3/part4
    relpath_check /home             /work/part2/part3
    relpath_check /                 /work/part2/part3/part4
    relpath_check /home/part1/part2 /home/part1/part2/part3/part4
    relpath_check /home/part1/part2 /home/part1/part2/part3
    relpath_check /home/part1/part2 /home/part1/part2
    relpath_check /home/part1/part2 /home/part1
    relpath_check /home/part1/part2 /home
    relpath_check /home/part1/part2 /
    relpath_check /home/part1/part2 /work
    relpath_check /home/part1/part2 /work/part1
    relpath_check /home/part1/part2 /work/part1/part2
    relpath_check /home/part1/part2 /work/part1/part2/part3
    relpath_check /home/part1/part2 /work/part1/part2/part3/part4 
    relpath_check home/part1/part2 home/part1/part3
    relpath_check home/part1/part2 home/part4/part5
    relpath_check home/part1/part2 work/part6/part7
    relpath_check home/part1       work/part1/part2/part3/part4
    relpath_check home             work/part2/part3
    relpath_check .                work/part2/part3
    relpath_check home/part1/part2 home/part1/part2/part3/part4
    relpath_check home/part1/part2 home/part1/part2/part3
    relpath_check home/part1/part2 home/part1/part2
    relpath_check home/part1/part2 home/part1
    relpath_check home/part1/part2 home
    relpath_check home/part1/part2 .
    relpath_check home/part1/part2 work
    relpath_check home/part1/part2 work/part1
    relpath_check home/part1/part2 work/part1/part2
    relpath_check home/part1/part2 work/part1/part2/part3
    relpath_check home/part1/part2 work/part1/part2/part3/part4

    print "Done with checks."
}
if [[ $# -gt 0 ]] && [[ $1 = "-v" ]]; then
    VERBOSE=true
    shift
fi
if [[ $# -eq 0 ]]; then
    run_checks
else
    VERBOSE=true
    relpath_check "$@"
fi

答案 6 :(得分:13)

假设你已经安装了:bash,pwd,dirname,echo;那么relpath是

#!/bin/bash
s=$(cd ${1%%/};pwd); d=$(cd $2;pwd); while [ "${d#$s/}" == "${d}" ]
do s=$(dirname $s);b="../${b}"; done; echo ${b}${d#$s/}

我从pini和其他一些想法中获得了答案

答案 7 :(得分:11)

#!/bin/sh

# Return relative path from canonical absolute dir path $1 to canonical
# absolute dir path $2 ($1 and/or $2 may end with one or no "/").
# Does only need POSIX shell builtins (no external command)
relPath () {
    local common path up
    common=${1%/} path=${2%/}/
    while test "${path#"$common"/}" = "$path"; do
        common=${common%/*} up=../$up
    done
    path=$up${path#"$common"/}; path=${path%/}; printf %s "${path:-.}"
}

# Return relative path from dir $1 to dir $2 (Does not impose any
# restrictions on $1 and $2 but requires GNU Core Utility "readlink"
# HINT: busybox's "readlink" does not support option '-m', only '-f'
#       which requires that all but the last path component must exist)
relpath () { relPath "$(readlink -m "$1")" "$(readlink -m "$2")"; }

以上shell脚本的灵感来自pini's(谢谢!)。它会触发一个错误 在Stack Overflow的语法高亮模块中(至少在我的预览中) 帧)。如果突出显示不正确,请忽略。

一些注意事项:

  • 删除错误并改进代码,而不会显着增加代码 长度和复杂性
  • 将功能放入功能中以便于使用
  • 保持POSIX兼容功能,以便它们(应该)与所有POSIX一起使用 shell(在Ubuntu Linux 12.04中使用dash,bash和zsh进行测试)
  • 仅使用局部变量来避免破坏全局变量和 污染全球名称空间
  • 两个目录路径都不需要存在(我的应用程序的要求)
  • 路径名可能包含空格,特殊字符,控制字符, 反斜杠,制表符,',“,?,*,[,]等。
  • 核心功能“relPath”仅使用POSIX shell内置但需要 规范的绝对目录路径作为参数
  • 扩展函数“relpath”可以处理任意目录路径(也是 相对的,非规范的)但需要外部GNU核心实用程序“readlink”
  • 避免使用内置“echo”并使用内置“printf”,原因有两个:
  • 为了避免不必要的转换,在返回路径名时会使用它们 并期望shell和OS实用程序(例如cd,ln,ls,find,mkdir; 不像python的“os.path.relpath”,它将解释一些反斜杠 序列)
  • 除了上面提到的反斜杠序列,函数“relPath”的最后一行 输出与python兼容的路径名:

    path=$up${path#"$common"/}; path=${path%/}; printf %s "${path:-.}"
    

    最后一行可以用行替换(和简化)

    printf %s "$up${path#"$common"/}"
    

    我更喜欢后者,因为

    1. 文件名可以直接附加到relPath获取的目录路径,例如:

      ln -s "$(relpath "<fromDir>" "<toDir>")<file>" "<fromDir>"
      
    2. 使用此方法创建的同一目录中的符号链接没有 丑陋的"./"前置于文件名。

  • 如果您发现错误,请联系linuxball(at)gmail.com,我会尝试 解决它。
  • 添加了回归测试套件(也兼容POSIX shell)

回归测试的代码清单(只需将其附加到shell脚本):

############################################################################
# If called with 2 arguments assume they are dir paths and print rel. path #
############################################################################

test "$#" = 2 && {
    printf '%s\n' "Rel. path from '$1' to '$2' is '$(relpath "$1" "$2")'."
    exit 0
}

#######################################################
# If NOT called with 2 arguments run regression tests #
#######################################################

format="\t%-19s %-22s %-27s %-8s %-8s %-8s\n"
printf \
"\n\n*** Testing own and python's function with canonical absolute dirs\n\n"
printf "$format\n" \
    "From Directory" "To Directory" "Rel. Path" "relPath" "relpath" "python"
IFS=
while read -r p; do
    eval set -- $p
    case $1 in '#'*|'') continue;; esac # Skip comments and empty lines
    # q stores quoting character, use " if ' is used in path name
    q="'"; case $1$2 in *"'"*) q='"';; esac
    rPOk=passed rP=$(relPath "$1" "$2"); test "$rP" = "$3" || rPOk=$rP
    rpOk=passed rp=$(relpath "$1" "$2"); test "$rp" = "$3" || rpOk=$rp
    RPOk=passed
    RP=$(python -c "import os.path; print os.path.relpath($q$2$q, $q$1$q)")
    test "$RP" = "$3" || RPOk=$RP
    printf \
    "$format" "$q$1$q" "$q$2$q" "$q$3$q" "$q$rPOk$q" "$q$rpOk$q" "$q$RPOk$q"
done <<-"EOF"
    # From directory    To directory           Expected relative path

    '/'                 '/'                    '.'
    '/usr'              '/'                    '..'
    '/usr/'             '/'                    '..'
    '/'                 '/usr'                 'usr'
    '/'                 '/usr/'                'usr'
    '/usr'              '/usr'                 '.'
    '/usr/'             '/usr'                 '.'
    '/usr'              '/usr/'                '.'
    '/usr/'             '/usr/'                '.'
    '/u'                '/usr'                 '../usr'
    '/usr'              '/u'                   '../u'
    "/u'/dir"           "/u'/dir"              "."
    "/u'"               "/u'/dir"              "dir"
    "/u'/dir"           "/u'"                  ".."
    "/"                 "/u'/dir"              "u'/dir"
    "/u'/dir"           "/"                    "../.."
    "/u'"               "/u'"                  "."
    "/"                 "/u'"                  "u'"
    "/u'"               "/"                    ".."
    '/u"/dir'           '/u"/dir'              '.'
    '/u"'               '/u"/dir'              'dir'
    '/u"/dir'           '/u"'                  '..'
    '/'                 '/u"/dir'              'u"/dir'
    '/u"/dir'           '/'                    '../..'
    '/u"'               '/u"'                  '.'
    '/'                 '/u"'                  'u"'
    '/u"'               '/'                    '..'
    '/u /dir'           '/u /dir'              '.'
    '/u '               '/u /dir'              'dir'
    '/u /dir'           '/u '                  '..'
    '/'                 '/u /dir'              'u /dir'
    '/u /dir'           '/'                    '../..'
    '/u '               '/u '                  '.'
    '/'                 '/u '                  'u '
    '/u '               '/'                    '..'
    '/u\n/dir'          '/u\n/dir'             '.'
    '/u\n'              '/u\n/dir'             'dir'
    '/u\n/dir'          '/u\n'                 '..'
    '/'                 '/u\n/dir'             'u\n/dir'
    '/u\n/dir'          '/'                    '../..'
    '/u\n'              '/u\n'                 '.'
    '/'                 '/u\n'                 'u\n'
    '/u\n'              '/'                    '..'

    '/    a   b/å/⮀*/!' '/    a   b/å/⮀/xäå/?' '../../⮀/xäå/?'
    '/'                 '/A'                   'A'
    '/A'                '/'                    '..'
    '/  & /  !/*/\\/E'  '/'                    '../../../../..'
    '/'                 '/  & /  !/*/\\/E'     '  & /  !/*/\\/E'
    '/  & /  !/*/\\/E'  '/  & /  !/?/\\/E/F'   '../../../?/\\/E/F'
    '/X/Y'              '/  & /  !/C/\\/E/F'   '../../  & /  !/C/\\/E/F'
    '/  & /  !/C'       '/A'                   '../../../A'
    '/A /  !/C'         '/A /B'                '../../B'
    '/Â/  !/C'          '/Â/  !/C'             '.'
    '/  & /B / C'       '/  & /B / C/D'        'D'
    '/  & /  !/C'       '/  & /  !/C/\\/Ê'     '\\/Ê'
    '/Å/  !/C'          '/Å/  !/D'             '../D'
    '/.A /*B/C'         '/.A /*B/\\/E'         '../\\/E'
    '/  & /  !/C'       '/  & /D'              '../../D'
    '/  & /  !/C'       '/  & /\\/E'           '../../\\/E'
    '/  & /  !/C'       '/\\/E/F'              '../../../\\/E/F'
    '/home/p1/p2'       '/home/p1/p3'          '../p3'
    '/home/p1/p2'       '/home/p4/p5'          '../../p4/p5'
    '/home/p1/p2'       '/work/p6/p7'          '../../../work/p6/p7'
    '/home/p1'          '/work/p1/p2/p3/p4'    '../../work/p1/p2/p3/p4'
    '/home'             '/work/p2/p3'          '../work/p2/p3'
    '/'                 '/work/p2/p3/p4'       'work/p2/p3/p4'
    '/home/p1/p2'       '/home/p1/p2/p3/p4'    'p3/p4'
    '/home/p1/p2'       '/home/p1/p2/p3'       'p3'
    '/home/p1/p2'       '/home/p1/p2'          '.'
    '/home/p1/p2'       '/home/p1'             '..'
    '/home/p1/p2'       '/home'                '../..'
    '/home/p1/p2'       '/'                    '../../..'
    '/home/p1/p2'       '/work'                '../../../work'
    '/home/p1/p2'       '/work/p1'             '../../../work/p1'
    '/home/p1/p2'       '/work/p1/p2'          '../../../work/p1/p2'
    '/home/p1/p2'       '/work/p1/p2/p3'       '../../../work/p1/p2/p3'
    '/home/p1/p2'       '/work/p1/p2/p3/p4'    '../../../work/p1/p2/p3/p4'

    '/-'                '/-'                   '.'
    '/?'                '/?'                   '.'
    '/??'               '/??'                  '.'
    '/???'              '/???'                 '.'
    '/?*'               '/?*'                  '.'
    '/*'                '/*'                   '.'
    '/*'                '/**'                  '../**'
    '/*'                '/***'                 '../***'
    '/*.*'              '/*.**'                '../*.**'
    '/*.???'            '/*.??'                '../*.??'
    '/[]'               '/[]'                  '.'
    '/[a-z]*'           '/[0-9]*'              '../[0-9]*'
EOF


format="\t%-19s %-22s %-27s %-8s %-8s\n"
printf "\n\n*** Testing own and python's function with arbitrary dirs\n\n"
printf "$format\n" \
    "From Directory" "To Directory" "Rel. Path" "relpath" "python"
IFS=
while read -r p; do
    eval set -- $p
    case $1 in '#'*|'') continue;; esac # Skip comments and empty lines
    # q stores quoting character, use " if ' is used in path name
    q="'"; case $1$2 in *"'"*) q='"';; esac
    rpOk=passed rp=$(relpath "$1" "$2"); test "$rp" = "$3" || rpOk=$rp
    RPOk=passed
    RP=$(python -c "import os.path; print os.path.relpath($q$2$q, $q$1$q)")
    test "$RP" = "$3" || RPOk=$RP
    printf "$format" "$q$1$q" "$q$2$q" "$q$3$q" "$q$rpOk$q" "$q$RPOk$q"
done <<-"EOF"
    # From directory    To directory           Expected relative path

    'usr/p1/..//./p4'   'p3/../p1/p6/.././/p2' '../../p1/p2'
    './home/../../work' '..//././../dir///'    '../../dir'

    'home/p1/p2'        'home/p1/p3'           '../p3'
    'home/p1/p2'        'home/p4/p5'           '../../p4/p5'
    'home/p1/p2'        'work/p6/p7'           '../../../work/p6/p7'
    'home/p1'           'work/p1/p2/p3/p4'     '../../work/p1/p2/p3/p4'
    'home'              'work/p2/p3'           '../work/p2/p3'
    '.'                 'work/p2/p3'           'work/p2/p3'
    'home/p1/p2'        'home/p1/p2/p3/p4'     'p3/p4'
    'home/p1/p2'        'home/p1/p2/p3'        'p3'
    'home/p1/p2'        'home/p1/p2'           '.'
    'home/p1/p2'        'home/p1'              '..'
    'home/p1/p2'        'home'                 '../..'
    'home/p1/p2'        '.'                    '../../..'
    'home/p1/p2'        'work'                 '../../../work'
    'home/p1/p2'        'work/p1'              '../../../work/p1'
    'home/p1/p2'        'work/p1/p2'           '../../../work/p1/p2'
    'home/p1/p2'        'work/p1/p2/p3'        '../../../work/p1/p2/p3'
    'home/p1/p2'        'work/p1/p2/p3/p4'     '../../../work/p1/p2/p3/p4'
EOF

答案 8 :(得分:7)

我只是将Perl用于这个不那么重要的任务:

absolute="/foo/bar"
current="/foo/baz/foo"

# Perl is magic
relative=$(perl -MFile::Spec -e 'print File::Spec->abs2rel("'$absolute'","'$current'")')

答案 9 :(得分:6)

此脚本仅为没有...的绝对路径或相对路径的输入提供正确的结果:

#!/bin/bash

# usage: relpath from to

if [[ "$1" == "$2" ]]
then
    echo "."
    exit
fi

IFS="/"

current=($1)
absolute=($2)

abssize=${#absolute[@]}
cursize=${#current[@]}

while [[ ${absolute[level]} == ${current[level]} ]]
do
    (( level++ ))
    if (( level > abssize || level > cursize ))
    then
        break
    fi
done

for ((i = level; i < cursize; i++))
do
    if ((i > level))
    then
        newpath=$newpath"/"
    fi
    newpath=$newpath".."
done

for ((i = level; i < abssize; i++))
do
    if [[ -n $newpath ]]
    then
        newpath=$newpath"/"
    fi
    newpath=$newpath${absolute[i]}
done

echo "$newpath"

答案 10 :(得分:6)

kasku'sPini's答案略有改进,这些答案可以更好地使用空格并允许传递相对路径:

#!/bin/bash
# both $1 and $2 are paths
# returns $2 relative to $1
absolute=`readlink -f "$2"`
current=`readlink -f "$1"`
# Perl is magic
# Quoting horror.... spaces cause problems, that's why we need the extra " in here:
relative=$(perl -MFile::Spec -e "print File::Spec->abs2rel(q($absolute),q($current))")

echo $relative

答案 11 :(得分:5)

这里没有很多答案适合每天使用。由于在纯粹的bash中很难做到这一点,我建议采用以下可靠的解决方案(类似于评论中的一个建议):

function relpath() { 
  python -c "import os,sys;print(os.path.relpath(*(sys.argv[1:])))" "$@";
}

然后,您可以根据当前目录获取相对路径:

echo $(relpath somepath)

或者您可以指定路径相对于给定目录:

echo $(relpath somepath /etc)  # relative to /etc

一个缺点是这需要python,但是:

  • 它在任何python&gt; = 2.6
  • 中的工作方式相同
  • 不要求文件或目录存在。
  • 文件名可能包含更多种类的特殊字符。  例如,如果文件名包含,许多其他解决方案都不起作用  空格或其他特殊字符。
  • 这是一个单行功能,不会使脚本混乱。

请注意,包含basenamedirname的解决方案可能不一定更好,因为它们需要安装coreutils。如果某人有一个可靠而简单的纯bash解决方案(而不是一个好奇的好奇心),我会感到惊讶。

答案 12 :(得分:4)

test.sh:

#!/bin/bash                                                                 

cd /home/ubuntu
touch blah
TEST=/home/ubuntu/.//blah
echo TEST=$TEST
TMP=$(readlink -e "$TEST")
echo TMP=$TMP
REL=${TMP#$(pwd)/}
echo REL=$REL

测试:

$ ./test.sh 
TEST=/home/ubuntu/.//blah
TMP=/home/ubuntu/blah
REL=blah

答案 13 :(得分:3)

我把你的问题作为挑战,用“便携式”shell代码编写,即

  • 牢记POSIX shell
  • 没有像数组这样的bashisms
  • 避免像瘟疫那样召唤外部人员。脚本中没有单个fork!这使得它非常快,特别是在具有显着叉开销的系统上,例如cygwin。
  • 必须处理路径名中的glob字符(*,?,[,])

它在任何符合POSIX标准的shell(zsh,bash,ksh,ash,busybox,...)上运行。它甚至包含一个验证其操作的测试套件。路径名的规范化留作练习。 : - )

#!/bin/sh

# Find common parent directory path for a pair of paths.
# Call with two pathnames as args, e.g.
# commondirpart foo/bar foo/baz/bat -> result="foo/"
# The result is either empty or ends with "/".
commondirpart () {
   result=""
   while test ${#1} -gt 0 -a ${#2} -gt 0; do
      if test "${1%${1#?}}" != "${2%${2#?}}"; then   # First characters the same?
         break                                       # No, we're done comparing.
      fi
      result="$result${1%${1#?}}"                    # Yes, append to result.
      set -- "${1#?}" "${2#?}"                       # Chop first char off both strings.
   done
   case "$result" in
   (""|*/) ;;
   (*)     result="${result%/*}/";;
   esac
}

# Turn foo/bar/baz into ../../..
#
dir2dotdot () {
   OLDIFS="$IFS" IFS="/" result=""
   for dir in $1; do
      result="$result../"
   done
   result="${result%/}"
   IFS="$OLDIFS"
}

# Call with FROM TO args.
relativepath () {
   case "$1" in
   (*//*|*/./*|*/../*|*?/|*/.|*/..)
      printf '%s\n' "'$1' not canonical"; exit 1;;
   (/*)
      from="${1#?}";;
   (*)
      printf '%s\n' "'$1' not absolute"; exit 1;;
   esac
   case "$2" in
   (*//*|*/./*|*/../*|*?/|*/.|*/..)
      printf '%s\n' "'$2' not canonical"; exit 1;;
   (/*)
      to="${2#?}";;
   (*)
      printf '%s\n' "'$2' not absolute"; exit 1;;
   esac

   case "$to" in
   ("$from")   # Identical directories.
      result=".";;
   ("$from"/*) # From /x to /x/foo/bar -> foo/bar
      result="${to##$from/}";;
   ("")        # From /foo/bar to / -> ../..
      dir2dotdot "$from";;
   (*)
      case "$from" in
      ("$to"/*)       # From /x/foo/bar to /x -> ../..
         dir2dotdot "${from##$to/}";;
      (*)             # Everything else.
         commondirpart "$from" "$to"
         common="$result"
         dir2dotdot "${from#$common}"
         result="$result/${to#$common}"
      esac
      ;;
   esac
}

set -f # noglob

set -x
cat <<EOF |
/ / .
/- /- .
/? /? .
/?? /?? .
/??? /??? .
/?* /?* .
/* /* .
/* /** ../**
/* /*** ../***
/*.* /*.** ../*.**
/*.??? /*.?? ../*.??
/[] /[] .
/[a-z]* /[0-9]* ../[0-9]*
/foo /foo .
/foo / ..
/foo/bar / ../..
/foo/bar /foo ..
/foo/bar /foo/baz ../baz
/foo/bar /bar/foo  ../../bar/foo
/foo/bar/baz /gnarf/blurfl/blubb ../../../gnarf/blurfl/blubb
/foo/bar/baz /gnarf ../../../gnarf
/foo/bar/baz /foo/baz ../../baz
/foo. /bar. ../bar.
EOF
while read FROM TO VIA; do
   relativepath "$FROM" "$TO"
   printf '%s\n' "FROM: $FROM" "TO:   $TO" "VIA:  $result"
   if test "$result" != "$VIA"; then
      printf '%s\n' "OOOPS! Expected '$VIA' but got '$result'"
   fi
done

# vi: set tabstop=3 shiftwidth=3 expandtab fileformat=unix :

答案 14 :(得分:3)

可悲的是,Mark Rushakoff的答案(现已删除 - 它引用了here中的代码)在适应时似乎无法正常工作:

source=/home/part2/part3/part4
target=/work/proj1/proj2

评论中概述的思路可以进行改进,使其适用于大多数情况。我将假设脚本采用源参数(您所在的位置)和目标参数(您想要到达的位置),并且两者都是绝对路径名或两者都是相对的。如果一个是绝对的而另一个是相对的,最简单的方法是在相对名称前加上当前工作目录 - 但下面的代码不会这样做。


当心

以下代码接近正常工作,但不太正确。

  1. 丹尼斯威廉姆森的评论中提到了问题。
  2. 还有一个问题是,这种纯粹的文本处理路径名,你可能会被奇怪的符号链接搞砸了。
  3. 代码不会处理“xyz/./pqr”等路径中的杂散“点”。
  4. 代码不会处理“xyz/../pqr”等路径中的杂散“双点”。
  5. 琐碎:代码不会从路径中删除前导“./”。
  6. Dennis的代码更好,因为它修复了1和5 - 但具有相同的问题2,3,4。 因此,请使用丹尼斯的代码(并在此之前进行投票)。

    (注意:POSIX提供了一个系统调用realpath()来解析路径名,这样它们就不会留下任何符号链接。将它应用于输入名称,然后使用Dennis的代码每次都会得到正确的答案。编写包裹realpath()的C代码是微不足道的 - 我已经完成了 - 但我不知道这样做的标准实用程序。)


    为此,我发现Perl比shell更容易使用,虽然bash对数组有很好的支持,也可能这样做 - 为读者练习。因此,给定两个兼容的名称,将它们分成几个组件:

    • 将相对路径设置为空。
    • 虽然组件相同,但请跳到下一步。
    • 当相应的组件不同或一条路径没有更多组件时:
    • 如果没有剩余的源组件且相对路径为空,请添加“。”一开始。
    • 对于每个剩余的源组件,在相对路径前加上“../".
    • 如果没有剩余目标组件且相对路径为空,请添加“。”一开始。
    • 对于每个剩余的目标组件,请在斜杠后将组件添加到路径的末尾。

    因此:

    #!/bin/perl -w
    
    use strict;
    
    # Should fettle the arguments if one is absolute and one relative:
    # Oops - missing functionality!
    
    # Split!
    my(@source) = split '/', $ARGV[0];
    my(@target) = split '/', $ARGV[1];
    
    my $count = scalar(@source);
       $count = scalar(@target) if (scalar(@target) < $count);
    my $relpath = "";
    
    my $i;
    for ($i = 0; $i < $count; $i++)
    {
        last if $source[$i] ne $target[$i];
    }
    
    $relpath = "." if ($i >= scalar(@source) && $relpath eq "");
    for (my $s = $i; $s < scalar(@source); $s++)
    {
        $relpath = "../$relpath";
    }
    $relpath = "." if ($i >= scalar(@target) && $relpath eq "");
    for (my $t = $i; $t < scalar(@target); $t++)
    {
        $relpath .= "/$target[$t]";
    }
    
    # Clean up result (remove double slash, trailing slash, trailing slash-dot).
    $relpath =~ s%//%/%;
    $relpath =~ s%/$%%;
    $relpath =~ s%/\.$%%;
    
    print "source  = $ARGV[0]\n";
    print "target  = $ARGV[1]\n";
    print "relpath = $relpath\n";
    

    测试脚本(方括号包含空格和制表符):

    sed 's/#.*//;/^[    ]*$/d' <<! |
    
    /home/part1/part2 /home/part1/part3
    /home/part1/part2 /home/part4/part5
    /home/part1/part2 /work/part6/part7
    /home/part1       /work/part1/part2/part3/part4
    /home             /work/part2/part3
    /                 /work/part2/part3/part4
    
    /home/part1/part2 /home/part1/part2/part3/part4
    /home/part1/part2 /home/part1/part2/part3
    /home/part1/part2 /home/part1/part2
    /home/part1/part2 /home/part1
    /home/part1/part2 /home
    /home/part1/part2 /
    
    /home/part1/part2 /work
    /home/part1/part2 /work/part1
    /home/part1/part2 /work/part1/part2
    /home/part1/part2 /work/part1/part2/part3
    /home/part1/part2 /work/part1/part2/part3/part4
    
    home/part1/part2 home/part1/part3
    home/part1/part2 home/part4/part5
    home/part1/part2 work/part6/part7
    home/part1       work/part1/part2/part3/part4
    home             work/part2/part3
    .                work/part2/part3
    
    home/part1/part2 home/part1/part2/part3/part4
    home/part1/part2 home/part1/part2/part3
    home/part1/part2 home/part1/part2
    home/part1/part2 home/part1
    home/part1/part2 home
    home/part1/part2 .
    
    home/part1/part2 work
    home/part1/part2 work/part1
    home/part1/part2 work/part1/part2
    home/part1/part2 work/part1/part2/part3
    home/part1/part2 work/part1/part2/part3/part4
    
    !
    
    while read source target
    do
        perl relpath.pl $source $target
        echo
    done
    

    测试脚本的输出:

    source  = /home/part1/part2
    target  = /home/part1/part3
    relpath = ../part3
    
    source  = /home/part1/part2
    target  = /home/part4/part5
    relpath = ../../part4/part5
    
    source  = /home/part1/part2
    target  = /work/part6/part7
    relpath = ../../../work/part6/part7
    
    source  = /home/part1
    target  = /work/part1/part2/part3/part4
    relpath = ../../work/part1/part2/part3/part4
    
    source  = /home
    target  = /work/part2/part3
    relpath = ../work/part2/part3
    
    source  = /
    target  = /work/part2/part3/part4
    relpath = ./work/part2/part3/part4
    
    source  = /home/part1/part2
    target  = /home/part1/part2/part3/part4
    relpath = ./part3/part4
    
    source  = /home/part1/part2
    target  = /home/part1/part2/part3
    relpath = ./part3
    
    source  = /home/part1/part2
    target  = /home/part1/part2
    relpath = .
    
    source  = /home/part1/part2
    target  = /home/part1
    relpath = ..
    
    source  = /home/part1/part2
    target  = /home
    relpath = ../..
    
    source  = /home/part1/part2
    target  = /
    relpath = ../../../..
    
    source  = /home/part1/part2
    target  = /work
    relpath = ../../../work
    
    source  = /home/part1/part2
    target  = /work/part1
    relpath = ../../../work/part1
    
    source  = /home/part1/part2
    target  = /work/part1/part2
    relpath = ../../../work/part1/part2
    
    source  = /home/part1/part2
    target  = /work/part1/part2/part3
    relpath = ../../../work/part1/part2/part3
    
    source  = /home/part1/part2
    target  = /work/part1/part2/part3/part4
    relpath = ../../../work/part1/part2/part3/part4
    
    source  = home/part1/part2
    target  = home/part1/part3
    relpath = ../part3
    
    source  = home/part1/part2
    target  = home/part4/part5
    relpath = ../../part4/part5
    
    source  = home/part1/part2
    target  = work/part6/part7
    relpath = ../../../work/part6/part7
    
    source  = home/part1
    target  = work/part1/part2/part3/part4
    relpath = ../../work/part1/part2/part3/part4
    
    source  = home
    target  = work/part2/part3
    relpath = ../work/part2/part3
    
    source  = .
    target  = work/part2/part3
    relpath = ../work/part2/part3
    
    source  = home/part1/part2
    target  = home/part1/part2/part3/part4
    relpath = ./part3/part4
    
    source  = home/part1/part2
    target  = home/part1/part2/part3
    relpath = ./part3
    
    source  = home/part1/part2
    target  = home/part1/part2
    relpath = .
    
    source  = home/part1/part2
    target  = home/part1
    relpath = ..
    
    source  = home/part1/part2
    target  = home
    relpath = ../..
    
    source  = home/part1/part2
    target  = .
    relpath = ../../..
    
    source  = home/part1/part2
    target  = work
    relpath = ../../../work
    
    source  = home/part1/part2
    target  = work/part1
    relpath = ../../../work/part1
    
    source  = home/part1/part2
    target  = work/part1/part2
    relpath = ../../../work/part1/part2
    
    source  = home/part1/part2
    target  = work/part1/part2/part3
    relpath = ../../../work/part1/part2/part3
    
    source  = home/part1/part2
    target  = work/part1/part2/part3/part4
    relpath = ../../../work/part1/part2/part3/part4
    

    在面对奇怪的输入时,这个Perl脚本在Unix上运行相当彻底(它没有考虑到Windows路径名的所有复杂性)。它使用模块Cwd及其函数realpath来解析存在的名称的真实路径,并对不存在的路径进行文本分析。在除了一个之外的所有情况下,它产生与Dennis的脚本相同的输出。不正常的情况是:

    source   = home/part1/part2
    target   = .
    relpath1 = ../../..
    relpath2 = ../../../.
    

    这两个结果是等价的 - 只是不相同。 (输出来自测试脚本的温和修改版本 - 下面的Perl脚本只是打印答案,而不是上面脚本中的输入和答案。)现在:我应该消除不工作的答案?也许......

    #!/bin/perl -w
    # Based loosely on code from: http://unix.derkeiler.com/Newsgroups/comp.unix.shell/2005-10/1256.html
    # Via: http://stackoverflow.com/questions/2564634
    
    use strict;
    
    die "Usage: $0 from to\n" if scalar @ARGV != 2;
    
    use Cwd qw(realpath getcwd);
    
    my $pwd;
    my $verbose = 0;
    
    # Fettle filename so it is absolute.
    # Deals with '//', '/./' and '/../' notations, plus symlinks.
    # The realpath() function does the hard work if the path exists.
    # For non-existent paths, the code does a purely textual hack.
    sub resolve
    {
        my($name) = @_;
        my($path) = realpath($name);
        if (!defined $path)
        {
            # Path does not exist - do the best we can with lexical analysis
            # Assume Unix - not dealing with Windows.
            $path = $name;
            if ($name !~ m%^/%)
            {
                $pwd = getcwd if !defined $pwd;
                $path = "$pwd/$path";
            }
            $path =~ s%//+%/%g;     # Not UNC paths.
            $path =~ s%/$%%;        # No trailing /
            $path =~ s%/\./%/%g;    # No embedded /./
            # Try to eliminate /../abc/
            $path =~ s%/\.\./(?:[^/]+)(/|$)%$1%g;
            $path =~ s%/\.$%%;      # No trailing /.
            $path =~ s%^\./%%;      # No leading ./
            # What happens with . and / as inputs?
        }
        return($path);
    }
    
    sub print_result
    {
        my($source, $target, $relpath) = @_;
        if ($verbose)
        {
            print "source  = $ARGV[0]\n";
            print "target  = $ARGV[1]\n";
            print "relpath = $relpath\n";
        }
        else
        {
            print "$relpath\n";
        }
        exit 0;
    }
    
    my($source) = resolve($ARGV[0]);
    my($target) = resolve($ARGV[1]);
    print_result($source, $target, ".") if ($source eq $target);
    
    # Split!
    my(@source) = split '/', $source;
    my(@target) = split '/', $target;
    
    my $count = scalar(@source);
       $count = scalar(@target) if (scalar(@target) < $count);
    my $relpath = "";
    my $i;
    
    # Both paths are absolute; Perl splits an empty field 0.
    for ($i = 1; $i < $count; $i++)
    {
        last if $source[$i] ne $target[$i];
    }
    
    for (my $s = $i; $s < scalar(@source); $s++)
    {
        $relpath = "$relpath/" if ($s > $i);
        $relpath = "$relpath..";
    }
    for (my $t = $i; $t < scalar(@target); $t++)
    {
        $relpath = "$relpath/" if ($relpath ne "");
        $relpath = "$relpath$target[$t]";
    }
    
    print_result($source, $target, $relpath);
    

答案 15 :(得分:2)

我的解决方案:

computeRelativePath() 
{

    Source=$(readlink -f ${1})
    Target=$(readlink -f ${2})

    local OLDIFS=$IFS
    IFS="/"

    local SourceDirectoryArray=($Source)
    local TargetDirectoryArray=($Target)

    local SourceArrayLength=$(echo ${SourceDirectoryArray[@]} | wc -w)
    local TargetArrayLength=$(echo ${TargetDirectoryArray[@]} | wc -w)

    local Length
    test $SourceArrayLength -gt $TargetArrayLength && Length=$SourceArrayLength || Length=$TargetArrayLength


    local Result=""
    local AppendToEnd=""

    IFS=$OLDIFS

    local i

    for ((i = 0; i <= $Length + 1 ; i++ ))
    do
            if [ "${SourceDirectoryArray[$i]}" = "${TargetDirectoryArray[$i]}" ]
            then
                continue    
            elif [ "${SourceDirectoryArray[$i]}" != "" ] && [ "${TargetDirectoryArray[$i]}" != "" ] 
            then
                AppendToEnd="${AppendToEnd}${TargetDirectoryArray[${i}]}/"
                Result="${Result}../"               

            elif [ "${SourceDirectoryArray[$i]}" = "" ]
            then
                Result="${Result}${TargetDirectoryArray[${i}]}/"
            else
                Result="${Result}../"
            fi
    done

    Result="${Result}${AppendToEnd}"

    echo $Result

}

答案 16 :(得分:2)

另一个解决方案,纯bash + GNU readlink,以便在以下环境中使用:

ln -s "$(relpath "$A" "$B")" "$B"
  

编辑:确保“$ B”在这种情况下不存在或没有软链接,否则relpath跟随此链接,这不是您想要的!

这适用于几乎所有当前的Linux。如果readlink -m无效,请尝试使用readlink -f。有关可能的更新,请参阅https://gist.github.com/hilbix/1ec361d00a8178ae8ea0

: relpath A B
# Calculate relative path from A to B, returns true on success
# Example: ln -s "$(relpath "$A" "$B")" "$B"
relpath()
{
local X Y A
# We can create dangling softlinks
X="$(readlink -m -- "$1")" || return
Y="$(readlink -m -- "$2")" || return
X="${X%/}/"
A=""
while   Y="${Y%/*}"
        [ ".${X#"$Y"/}" = ".$X" ]
do
        A="../$A"
done
X="$A${X#"$Y"/}"
X="${X%/}"
echo "${X:-.}"
}

注意:

  • 如果文件名包含*?,请注意防止不需要的shell元字符扩展是安全的。
  • 输出可用作ln -s的第一个参数:
    • relpath / /提供.而不是空字符串
    • relpath a a提供a,即使a恰好是目录
  • 对大多数常见案例进行了测试,以给出合理的结果。
  • 此解决方案使用字符串前缀匹配,因此需要readlink来规范化路径。
  • 感谢readlink -m,它也适用于尚未存在的路径。

readlink -m不可用的旧系统上,如果文件不存在,readlink -f将失败。所以你可能需要一些这样的解决方法(未经测试!):

readlink_missing()
{
readlink -m -- "$1" && return
readlink -f -- "$1" && return
[ -e . ] && echo "$(readlink_missing "$(dirname "$1")")/$(basename "$1")"
}

如果$1包含...用于不存在的路径(例如/doesnotexist/./a),则这种情况并不十分正确,但它应涵盖大多数情况。

(将上面的readlink -m --替换为readlink_missing。)

编辑因为下面的注册

这是一个测试,这个功能确实是正确的:

check()
{
res="$(relpath "$2" "$1")"
[ ".$res" = ".$3" ] && return
printf ':WRONG: %-10q %-10q gives %q\nCORRECT %-10q %-10q gives %q\n' "$1" "$2" "$res" "$@"
}

#     TARGET   SOURCE         RESULT
check "/A/B/C" "/A"           ".."
check "/A/B/C" "/A.x"         "../../A.x"
check "/A/B/C" "/A/B"         "."
check "/A/B/C" "/A/B/C"       "C"
check "/A/B/C" "/A/B/C/D"     "C/D"
check "/A/B/C" "/A/B/C/D/E"   "C/D/E"
check "/A/B/C" "/A/B/D"       "D"
check "/A/B/C" "/A/B/D/E"     "D/E"
check "/A/B/C" "/A/D"         "../D"
check "/A/B/C" "/A/D/E"       "../D/E"
check "/A/B/C" "/D/E/F"       "../../D/E/F"

check "/foo/baz/moo" "/foo/bar" "../bar"

困惑?好吧,这些都是正确的结果!即使你认为它不适合这个问题,这也是证明这是正确的:

check "http://example.com/foo/baz/moo" "http://example.com/foo/bar" "../bar"

毫无疑问,../bar是从bar页面看到的页面moo的确切且唯一正确的相对路径。其他一切都是完全错误的。

对于明显假定current是一个目录的问题采用输出是微不足道的:

absolute="/foo/bar"
current="/foo/baz/foo"
relative="../$(relpath "$absolute" "$current")"

这准确地返回了所要求的内容。

在你挑起眉毛之前,这是relpath的一个更复杂的变体(发现小差异),这也适用于URL语法(所以尾随/幸存,感谢一些bash - 魔术师:

# Calculate relative PATH to the given DEST from the given BASE
# In the URL case, both URLs must be absolute and have the same Scheme.
# The `SCHEME:` must not be present in the FS either.
# This way this routine works for file paths an
: relpathurl DEST BASE
relpathurl()
{
local X Y A
# We can create dangling softlinks
X="$(readlink -m -- "$1")" || return
Y="$(readlink -m -- "$2")" || return
X="${X%/}/${1#"${1%/}"}"
Y="${Y%/}${2#"${2%/}"}"
A=""
while   Y="${Y%/*}"
        [ ".${X#"$Y"/}" = ".$X" ]
do
        A="../$A"
done
X="$A${X#"$Y"/}"
X="${X%/}"
echo "${X:-.}"
}

这里的检查只是为了表明:它确实有效。

check()
{
res="$(relpathurl "$2" "$1")"
[ ".$res" = ".$3" ] && return
printf ':WRONG: %-10q %-10q gives %q\nCORRECT %-10q %-10q gives %q\n' "$1" "$2" "$res" "$@"
}

#     TARGET   SOURCE         RESULT
check "/A/B/C" "/A"           ".."
check "/A/B/C" "/A.x"         "../../A.x"
check "/A/B/C" "/A/B"         "."
check "/A/B/C" "/A/B/C"       "C"
check "/A/B/C" "/A/B/C/D"     "C/D"
check "/A/B/C" "/A/B/C/D/E"   "C/D/E"
check "/A/B/C" "/A/B/D"       "D"
check "/A/B/C" "/A/B/D/E"     "D/E"
check "/A/B/C" "/A/D"         "../D"
check "/A/B/C" "/A/D/E"       "../D/E"
check "/A/B/C" "/D/E/F"       "../../D/E/F"

check "/foo/baz/moo" "/foo/bar" "../bar"
check "http://example.com/foo/baz/moo" "http://example.com/foo/bar" "../bar"

check "http://example.com/foo/baz/moo/" "http://example.com/foo/bar" "../../bar"
check "http://example.com/foo/baz/moo"  "http://example.com/foo/bar/" "../bar/"
check "http://example.com/foo/baz/moo/"  "http://example.com/foo/bar/" "../../bar/"

以下是如何通过这个问题来提供想要的结果:

absolute="/foo/bar"
current="/foo/baz/foo"
relative="$(relpathurl "$absolute" "$current/")"
echo "$relative"

如果您发现无法使用的内容,请在下面的评论中告诉我们。感谢。

PS:

为什么relpath的论点“与其他所有答案形成对比”?

如果你改变了

Y="$(readlink -m -- "$2")" || return

Y="$(readlink -m -- "${2:-"$PWD"}")" || return

然后你可以离开第二个参数,这样BASE就是当前目录/ URL /无论如何。这是唯一的Unix原则,像往常一样。

如果您不喜欢,请返回Windows。感谢。

答案 17 :(得分:2)

这是我的版本。它基于answer @Offirmo。我使它与Dash兼容并修复了以下测试用例失败:

./compute-relative.sh "/a/b/c/de/f/g" "/a/b/c/def/g/" - &gt; "../..f/g/"

现在:

CT_FindRelativePath "/a/b/c/de/f/g" "/a/b/c/def/g/" - &gt; "../../../def/g/"

参见代码:

# both $1 and $2 are absolute paths beginning with /
# returns relative path to $2/$target from $1/$source
CT_FindRelativePath()
{
    local insource=$1
    local intarget=$2

    # Ensure both source and target end with /
    # This simplifies the inner loop.
    #echo "insource : \"$insource\""
    #echo "intarget : \"$intarget\""
    case "$insource" in
        */) ;;
        *) source="$insource"/ ;;
    esac

    case "$intarget" in
        */) ;;
        *) target="$intarget"/ ;;
    esac

    #echo "source : \"$source\""
    #echo "target : \"$target\""

    local common_part=$source # for now

    local result=""

    #echo "common_part is now : \"$common_part\""
    #echo "result is now      : \"$result\""
    #echo "target#common_part : \"${target#$common_part}\""
    while [ "${target#$common_part}" = "${target}" -a "${common_part}" != "//" ]; do
        # no match, means that candidate common part is not correct
        # go up one level (reduce common part)
        common_part=$(dirname "$common_part")/
        # and record that we went back
        if [ -z "${result}" ]; then
            result="../"
        else
            result="../$result"
        fi
        #echo "(w) common_part is now : \"$common_part\""
        #echo "(w) result is now      : \"$result\""
        #echo "(w) target#common_part : \"${target#$common_part}\""
    done

    #echo "(f) common_part is     : \"$common_part\""

    if [ "${common_part}" = "//" ]; then
        # special case for root (no common path)
        common_part="/"
    fi

    # since we now have identified the common part,
    # compute the non-common part
    forward_part="${target#$common_part}"
    #echo "forward_part = \"$forward_part\""

    if [ -n "${result}" -a -n "${forward_part}" ]; then
        #echo "(simple concat)"
        result="$result$forward_part"
    elif [ -n "${forward_part}" ]; then
        result="$forward_part"
    fi
    #echo "result = \"$result\""

    # if a / was added to target and result ends in / then remove it now.
    if [ "$intarget" != "$target" ]; then
        case "$result" in
            */) result=$(echo "$result" | awk '{ string=substr($0, 1, length($0)-1); print string; }' ) ;;
        esac
    fi

    echo $result

    return 0
}

答案 18 :(得分:1)

猜猜这个人也可以做到这一点......(附带内置测试):)

好的,预计会有一些开销,但我们在这里做Bourne shell! ;)

#!/bin/sh

#
# Finding the relative path to a certain file ($2), given the absolute path ($1)
# (available here too http://pastebin.com/tWWqA8aB)
#
relpath () {
  local  FROM="$1"
  local    TO="`dirname  $2`"
  local  FILE="`basename $2`"
  local  DEBUG="$3"

  local FROMREL=""
  local FROMUP="$FROM"
  while [ "$FROMUP" != "/" ]; do
    local TOUP="$TO"
    local TOREL=""
    while [ "$TOUP" != "/" ]; do
      [ -z "$DEBUG" ] || echo 1>&2 "$DEBUG$FROMUP =?= $TOUP"
      if [ "$FROMUP" = "$TOUP" ]; then
        echo "${FROMREL:-.}/$TOREL${TOREL:+/}$FILE"
        return 0
      fi
      TOREL="`basename $TOUP`${TOREL:+/}$TOREL"
      TOUP="`dirname $TOUP`"
    done
    FROMREL="..${FROMREL:+/}$FROMREL"
    FROMUP="`dirname $FROMUP`"
  done
  echo "${FROMREL:-.}${TOREL:+/}$TOREL/$FILE"
  return 0
}

relpathshow () {
  echo " - target $2"
  echo "   from   $1"
  echo "   ------"
  echo "   => `relpath $1 $2 '      '`"
  echo ""
}

# If given 2 arguments, do as said...
if [ -n "$2" ]; then
  relpath $1 $2

# If only one given, then assume current directory
elif [ -n "$1" ]; then
  relpath `pwd` $1

# Otherwise perform a set of built-in tests to confirm the validity of the method! ;)
else

  relpathshow /usr/share/emacs22/site-lisp/emacs-goodies-el \
              /usr/share/emacs22/site-lisp/emacs-goodies-el/filladapt.el

  relpathshow /usr/share/emacs23/site-lisp/emacs-goodies-el \
              /usr/share/emacs22/site-lisp/emacs-goodies-el/filladapt.el

  relpathshow /usr/bin \
              /usr/share/emacs22/site-lisp/emacs-goodies-el/filladapt.el

  relpathshow /usr/bin \
              /usr/share/emacs22/site-lisp/emacs-goodies-el/filladapt.el

  relpathshow /usr/bin/share/emacs22/site-lisp/emacs-goodies-el \
              /etc/motd

  relpathshow / \
              /initrd.img
fi

答案 19 :(得分:1)

此脚本仅适用于路径名。它不需要任何文件存在。如果传递的路径不是绝对的,则行为有点不寻常,但如果两个路径都是相对的,它应该按预期工作。

我只在OS X上测试过它,因此可能无法移植。

#!/bin/bash
set -e
declare SCRIPT_NAME="$(basename $0)"
function usage {
    echo "Usage: $SCRIPT_NAME <base path> <target file>"
    echo "       Outputs <target file> relative to <base path>"
    exit 1
}

if [ $# -lt 2 ]; then usage; fi

declare base=$1
declare target=$2
declare -a base_part=()
declare -a target_part=()

#Split path elements & canonicalize
OFS="$IFS"; IFS='/'
bpl=0;
for bp in $base; do
    case "$bp" in
        ".");;
        "..") let "bpl=$bpl-1" ;;
        *) base_part[${bpl}]="$bp" ; let "bpl=$bpl+1";;
    esac
done
tpl=0;
for tp in $target; do
    case "$tp" in
        ".");;
        "..") let "tpl=$tpl-1" ;;
        *) target_part[${tpl}]="$tp" ; let "tpl=$tpl+1";;
    esac
done
IFS="$OFS"

#Count common prefix
common=0
for (( i=0 ; i<$bpl ; i++ )); do
    if [ "${base_part[$i]}" = "${target_part[$common]}" ] ; then
        let "common=$common+1"
    else
        break
    fi
done

#Compute number of directories up
let "updir=$bpl-$common" || updir=0 #if the expression is zero, 'let' fails

#trivial case (after canonical decomposition)
if [ $updir -eq 0 ]; then
    echo .
    exit
fi

#Print updirs
for (( i=0 ; i<$updir ; i++ )); do
    echo -n ../
done

#Print remaining path
for (( i=$common ; i<$tpl ; i++ )); do
    if [ $i -ne $common ]; then
        echo -n "/"
    fi
    if [ "" != "${target_part[$i]}" ] ; then
        echo -n "${target_part[$i]}"
    fi
done
#One last newline
echo

答案 20 :(得分:1)

我使用的 macOS 默认没有 realpath 命令,所以我做了一个 pure bash 函数来计算它。

#!/bin/bash

##
# print a relative path from "source folder" to "target file"
#
# params:
#  $1 - target file, can be a relative path or an absolute path.
#  $2 - source folder, can be a relative path or an absolute path.
#
# test:
#  $ mkdir -p ~/A/B/C/D; touch ~/A/B/C/D/testfile.txt; touch ~/A/B/testfile.txt
#
#  $ getRelativePath ~/A/B/C/D/testfile.txt  ~/A/B
#  $ C/D/testfile.txt
#  
#  $ getRelativePath ~/A/B/testfile.txt  ~/A/B/C
#  $ ../testfile.txt
#
#  $ getRelativePath ~/A/B/testfile.txt  /
#  $ home/bunnier/A/B/testfile.txt 
#
function getRelativePath(){
    local targetFilename=$(basename $1)
    local targetFolder=$(cd $(dirname $1);pwd) # absolute target folder path
    local currentFolder=$(cd $2;pwd) # absulute source folder
    local result=.

    while [ "$currentFolder" != "$targetFolder" ];do
      if [[ "$targetFolder" =~ "$currentFolder"* ]];then
          pointSegment=${targetFolder#$currentFolder}
          result=$result/${pointSegment#/}
          break
      fi  
      result="$result"/..
      currentFolder=$(dirname $currentFolder)
    done

    result=$result/$targetFilename
    echo ${result#./}
}

答案 21 :(得分:0)

这个答案没有解决问题的Bash部分,但是因为我试图使用这个问题中的答案来实现Emacs中的这个功能,我会把它丢弃。

Emacs实际上有一个开箱即用的功能:

ELISP> (file-relative-name "/a/b/c" "/a/b/c")
"."
ELISP> (file-relative-name "/a/b/c" "/a/b")
"c"
ELISP> (file-relative-name "/a/b/c" "/c/b")
"../../a/b/c"

答案 22 :(得分:-1)

我需要这样的东西,但它也解决了符号链接。我发现pwd为此目的有一个-P标志。我的脚本片段被追加。它位于shell脚本的函数中,因此$ 1和$ 2。结果值是从START_ABS到END_ABS的相对路径,位于UPDIRS变量中。脚本cd进入每个参数目录以执行pwd -P,这也意味着处理相对路径参数。干杯,吉姆

SAVE_DIR="$PWD"
cd "$1"
START_ABS=`pwd -P`
cd "$SAVE_DIR"
cd "$2"
END_ABS=`pwd -P`

START_WORK="$START_ABS"
UPDIRS=""

while test -n "${START_WORK}" -a "${END_ABS/#${START_WORK}}" '==' "$END_ABS";
do
    START_WORK=`dirname "$START_WORK"`"/"
    UPDIRS=${UPDIRS}"../"
done
UPDIRS="$UPDIRS${END_ABS/#${START_WORK}}"
cd "$SAVE_DIR"

答案 23 :(得分:-1)

这是一个shell脚本,无需调用其他程序即可执行此操作:

#! /bin/env bash 

#bash script to find the relative path between two directories

mydir=${0%/}
mydir=${0%/*}
creadlink="$mydir/creadlink"

shopt -s extglob

relpath_ () {
        path1=$("$creadlink" "$1")
        path2=$("$creadlink" "$2")
        orig1=$path1
        path1=${path1%/}/
        path2=${path2%/}/

        while :; do
                if test ! "$path1"; then
                        break
                fi
                part1=${path2#$path1}
                if test "${part1#/}" = "$part1"; then
                        path1=${path1%/*}
                        continue
                fi
                if test "${path2#$path1}" = "$path2"; then
                        path1=${path1%/*}
                        continue
                fi
                break
        done
        part1=$path1
        path1=${orig1#$part1}
        depth=${path1//+([^\/])/..}
        path1=${path2#$path1}
        path1=${depth}${path2#$part1}
        path1=${path1##+(\/)}
        path1=${path1%/}
        if test ! "$path1"; then
                path1=.
        fi
        printf "$path1"

}

relpath_test () {
        res=$(relpath_ /path1/to/dir1 /path1/to/dir2 )
        expected='../dir2'
        test_results "$res" "$expected"

        res=$(relpath_ / /path1/to/dir2 )
        expected='path1/to/dir2'
        test_results "$res" "$expected"

        res=$(relpath_ /path1/to/dir2 / )
        expected='../../..'
        test_results "$res" "$expected"

        res=$(relpath_ / / )
        expected='.'
        test_results "$res" "$expected"

        res=$(relpath_ /path/to/dir2/dir3 /path/to/dir1/dir4/dir4a )
        expected='../../dir1/dir4/dir4a'
        test_results "$res" "$expected"

        res=$(relpath_ /path/to/dir1/dir4/dir4a /path/to/dir2/dir3 )
        expected='../../../dir2/dir3'
        test_results "$res" "$expected"

        #res=$(relpath_ . /path/to/dir2/dir3 )
        #expected='../../../dir2/dir3'
        #test_results "$res" "$expected"
}

test_results () {
        if test ! "$1" = "$2"; then
                printf 'failed!\nresult:\nX%sX\nexpected:\nX%sX\n\n' "$@"
        fi
}

#relpath_test

来源:http://www.ynform.org/w/Pub/Relpath