Re: use menu entry



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


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]