I am booted to BKWP64 v1008 by @radky.
IN a terminal, I am overlooking something.
Scenario:
I am trying to pipe the output into opening the geany command.
find . -name "*.iso" -mtime -30 | geany -
In bash, I thought the "-" argument tells the command to read the input from standard input (stdin), which is where the piped output is coming from.
But, this is not working because geany opens to an empty file named "-"?
Works fine if I pipe to a file and geany opens the file, but can I do this without the intermediate file?
What understanding am I missing?
Edit: Hummm??? Maybe geany 'must' not be able to accept input way??? Could that be right?