/usr/share/anyremote/cfg-data/Utils/aliases-server-fbrowser-v3.cfg is in anyremote-data 6.3.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Key aliases for file browser (v3) in server mode
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% FBROWSER v.3
[Protocol]=Server
FBROWSER_INIT=\
Make(var,fbrowser_dir,cat $(TmpDir)/ar_storedir.tmp);
FBROWSER_EXIT=\
Exec(echo "$(fbrowser_dir)" > $(TmpDir)/ar_storedir.tmp);
FBROWSER_FILL_LIST=\
Set(popup,show,Please wait);\
Set(list,replace,Files,..);\
ExecAndSet(list,add,SAME,cd "$(fbrowser_dir)";ls -F --quoting-style=shell|sed 's/\*//;s/,/\r/g;s/@//;s/$/,/'|grep '/');\
ExecAndSet(list,add,SAME,cd "$(fbrowser_dir)";ls -F --quoting-style=shell|sed 's/\*//;s/,/\r/g;s/@//;s/$/,/'|grep -v '/');\
Set(popup,hide);
FBROWSER_GO_TO=\
Make(var,goto,by_value,$(Param));\
Make(var,fbrowser_dir,cd "$(fbrowser_dir)";if [ -d $(goto) ]; then cd $(goto);fi;pwd);\
Macro(FBROWSER_FILL_LIST);
FBROWSER_GO_HOME=\
Make(var,fbrowser_dir,cd;pwd);\
Macro(FBROWSER_FILL_LIST);
Push($$)=\
Macro(FBROWSER_GO_TO);
[End]
|