Hi Ben,
Opening UE from shell is not possible.
I use a small perl-script called ue that includes the full path of a file, so I can just mark this in the shell (mouse), switch to UE, Press F10 (Open ftp in my case) and paste it into the field "Filename", so I can load it without filetree-clicking.
Example:
Shell:
~/daten/scripts/unix> ue test.txt
"/home/bego/daten/scripts/unix/test.txt"
EDIT
With perl you can copy a selection into clipboard automatically, but not with the version we have here.
so a shell-function in your alias-file (you surely have) does the job of printing anyway:
- Code: Select all
function ue () { cdir=`pwd`; echo \"${cdir}"/"$1\";}
ENDEDIT
rds Bego