mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
8 lines
233 B
Bash
Executable File
8 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}"
|