仅列出文件的公共父目录

Nic*_*ool 5 linux bash shell

我正在搜索一个文件,比如"file1.txt",并且find命令的输出如下所示.

/home/nicool/Desktop/file1.txt
/home/nicool/Desktop/dir1/file1.txt
/home/nicool/Desktop/dir1/dir2/file1.txt
Run Code Online (Sandbox Code Playgroud)

在上面的例子中我只想要共同的父目录,在上面的例子中是"/ home/nicool/Desktop".如何使用bash实现?请帮助找到这种问题的一般解决方案.

kay*_*kay 2

该脚本读取行并在每次迭代中存储公共前缀:

# read a line into the variable "prefix", split at slashes
IFS=/ read -a prefix

# while there are more lines, one after another read them into "next",
# also split at slashes
while IFS=/ read -a next; do
    new_prefix=()

    # for all indexes in prefix
    for ((i=0; i < "${#prefix[@]}"; ++i)); do
        # if the word in the new line matches the old one
        if [[ "${prefix[i]}" == "${next[i]}" ]]; then
            # then append to the new prefix
            new_prefix+=("${prefix[i]}")
        else
            # otherwise break out of the loop
            break
        fi
    done

    prefix=("${new_prefix[@]}")
done

# join an array
function join {
    # copied from: http://stackoverflow.com/a/17841619/416224
    local IFS="$1"
    shift
    echo "$*"
}

# join the common prefix array using slashes
join / "${prefix[@]}"
Run Code Online (Sandbox Code Playgroud)

例子:

$ ./x.sh <<eof
/home/nicool/Desktop1/file1.txt
/home/nicool/Desktop2/dir1/file1.txt
/home/nicool/Desktop3/dir1/dir2/file1.txt
eof
/home/nicool
Run Code Online (Sandbox Code Playgroud)