7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#! /usr/bin/env bash
|
|
#
|
|
# Replace absolute paths with the basename.
|
|
|
|
sed -E 's#/+#/#g' |
|
|
sed -E 's#/([^ :/]{1,}/){1,}([^ :/]{1,})#<...>/\2#g'
|