9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#! /bin/sh
|
|
# slash_path_relpath : lines (path ":" relpath) |> lines path
|
|
#
|
|
# Example: "/foo/bar: baz" => "/foo/baz"
|
|
#
|
|
set -euf
|
|
|
|
sed -n 's@/[^/]\+:@/@p'
|