mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 06:41:44 +01:00
7 lines
233 B
Bash
Executable file
7 lines
233 B
Bash
Executable file
#!/bin/bash
|
|
|
|
from=${1}
|
|
to=${2}
|
|
common=$(printf '%s\n%s' "${from}" "${to}" | sed 'N;s/\(.*\).*\n\1.*$/\1/' | sed 's@/[^/]*$@/@')
|
|
prefix=$(printf '%s\n' "${from#$common}" | sed 's@[^/][^/]*@..@g')
|
|
printf '%s\n' "$prefix/${to#$common}"
|