% (appcmd):apply command entered in the field of rename field.
In the cmd string,% is used to specify position of filename
parm. Without %,filename is appended to the string.
Set delimiter ";" between multiple cmd.
If ";" is part of parameter specify like as "\;".
$(Async execution) will be required for Linux not to wait xe's processing.
Command result is redirected to the file "#.cfso_n"(n:1,2,...).
ex)
To change string in the file,enter on rename field as following.
sed s/fromstring/tostring/g % > wkd\%.new
Cmd result is browsed by " ::cfso".(::#.cmd contains executed cmd).
"sed" unix tool. Search on web for Windows version.
(Note) Don't specify the original file name as redirection target.
You will get corrupted file.
To apply a cmd to all wildcard selected file in the dir,
xdig cmd in this package will be used.
ex)
Windows version: xdig /L1 /Nh % *.c "//sed s/from/to/g \%\%fp\%\% > \%\%fp\%\%.new"
( \%\%fp\%\% is passed to cmd prompt as %%fp%%, xdig accept it as %fp%.
D-quote is required to pass ">" (redirection) to xdig.
Linux version : xdig /L1 /Nh % *.c "//sed s/from/to/g \%fp\% > \%fp\%.new"
Some shell script will help you abridge keyboard typing.
EXE cmd redirect function is little bit slow but more convenient.