Replies: 5 comments 10 replies
-
main reason I am using this bash script is that it gives me "open with" choice. I guess that it may be desirable feature to add in lira, which will solve STDERR trouble for me ( excluding vis not opening with STDERR redirection ).
|
Beta Was this translation helpful? Give feedback.
-
I tried your script as opener (pretty nice btw), but cannot reproduce the issue: options are displayed either with STDERR silenced or not. What terminal are you using? I'll add a command line switch so you can test it yourself. Not sure if this is an issue with your script, but it refuses to run terminal applications, like EDIT: switch added. Run clifm with |
Beta Was this translation helpful? Give feedback.
-
latest version fails to build on alpine linux with this erros
|
Beta Was this translation helpful? Give feedback.
-
same command works with Other command with parameters like |
Beta Was this translation helpful? Give feedback.
-
The |
Beta Was this translation helpful? Give feedback.
-
STDERR of opener script seems to be redirected which is creating issues for me.
I am using opener script written in bash to open files. The script uses select loop, the output of which goes to STDERR by default ( I don't know why bash does that).
Here is an example of the problem.
Now let's run this redirecting STDOUT and STDERR alternatively
output of echo goes to STDOUT but output of select loop goes to STDERR
Actual script I am using is here
So when I use this as an opener in clifm, it's output asking to choose application is not displayed. As a workaround I added 2>&1 after all select loops, but still this doesn't work satisfactorily.
Can we allow display of STDERR as an option ?
Beta Was this translation helpful? Give feedback.
All reactions