On Sat, 4 Feb 2017, sp113438 wrote:
+ t t
W       CyrillicConvert
       set %t; CMD=%{find -type f ...}

       while [ -n "$1" ]; do
         $CMD "$1"
         shift
       done

%{XXX} is meant to show a prompt saying 'XXX' and expanding %{XXX} with what user entered. Try instead hardcoding your custom command directly:

       set %t

       while [ -n "$1" ]; do
         find "$1" -type -f ...
         shift
       done

--
Sincerely yours,
Yury V. Zaytsev
_______________________________________________
mc mailing list
https://mail.gnome.org/mailman/listinfo/mc

Reply via email to