6 lines
115 B
Bash
Executable File
6 lines
115 B
Bash
Executable File
#! /usr/bin/env bash
|
|
#
|
|
# Replace occurrences of the current working directory with "<...>"
|
|
|
|
sed "s#$(pwd)#<...>#g"
|