mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-09 19:10:32 +00:00
18 lines
366 B
Bash
Executable File
18 lines
366 B
Bash
Executable File
#!/bin/sh -e
|
|
# menter [MSG] - run subshell in temporary directory with MSG extracted
|
|
|
|
[ "$#" -eq 0 ] && set -- .
|
|
|
|
f="$(mseq "$1" | sed 1q)"
|
|
[ -z "$f" ] && printf 'No message %s.\n' "$1" 1>&2 && exit 1
|
|
|
|
dir=$(mktemp -d -t menter.XXXXXX)
|
|
cd "$dir"
|
|
mshow -t "$1"
|
|
mshow -x "$1" 2>/dev/null
|
|
ls -l
|
|
ln -s "$f" msg
|
|
"${SHELL:-/bin/sh}" || true
|
|
echo rm -r "$dir"
|
|
rm -r "$dir"
|