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>
6 lines
189 B
Bash
6 lines
189 B
Bash
l Lower case selection
|
|
TMPFILE=`mktemp ${MC_TMPDIR:-/tmp}/up.XXXXXX` || exit 1
|
|
cat %b > $TMPFILE
|
|
cat $TMPFILE| sed 's/\(.*\)/\L\1/' >%b
|
|
rm -f $TMPFILE
|