mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
04d54931d0
added rules for misc/macros.d/*. in the process of installation, example scripts will be copied into share/mc/examples/macros.d Signed-off-by: Ilia Maslakov <il.smind@gmail.com>
7 lines
159 B
Bash
7 lines
159 B
Bash
#interactive
|
|
m make
|
|
TMPFILE=`mktemp ${MC_TMPDIR:-/tmp}/up.XXXXXX` || exit 1
|
|
make 2> $TMPFILE
|
|
mcedit $TMPFILE
|
|
rm $TMPFILE
|