a.tom
Member
While trying some shell scripting with zenity / yad GUI dialogs i realised that there is no symlink from /dev/fd to /proc/self/fd in the Pandora firmware (Zaxxon, HF5). As far as i know this symlink is usually created by udev on system startup.
Therefore it's not possible to open a file descriptor with exec
throws the error
After creating the link manually with
everything works as expected!
Am i doing something wrong or could this be a bug?
Therefore it's not possible to open a file descriptor with exec
Code:
exec 3> >(zenity --notification --listen)
throws the error
Code:
/dev/fd/62: No such file or directory
After creating the link manually with
Code:
sudo ln -s /proc/self/fd /dev/fd
Am i doing something wrong or could this be a bug?