13 lines
194 B
Bash
Executable File
13 lines
194 B
Bash
Executable File
#! /bin/sh
|
|
# ls-bre : directory -> BRE
|
|
# Create a BRE from the files in a directory.
|
|
set -euf
|
|
|
|
ls "$1" \
|
|
| tr \\n / \
|
|
| sed '
|
|
s:[\.\[\\\*\^\$]:\\&:g
|
|
s:/$::
|
|
s:/:\\|:g
|
|
'
|